Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
jami-client-qt
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
savoirfairelinux
jami-client-qt
Commits
52b6b2a9
Commit
52b6b2a9
authored
2 years ago
by
Sébastien Blin
Browse files
Options
Downloads
Patches
Plain Diff
settings: update chat layout in current call view on settings update
Change-Id: Ifd98fa04653ea81948554a45fd724bd86625c839 GitLab:
#657
parent
ad8d1967
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/app/mainview/components/OngoingCallPage.qml
+9
-0
9 additions, 0 deletions
src/app/mainview/components/OngoingCallPage.qml
src/app/utilsadapter.cpp
+2
-0
2 additions, 0 deletions
src/app/utilsadapter.cpp
src/app/utilsadapter.h
+1
-0
1 addition, 0 deletions
src/app/utilsadapter.h
with
12 additions
and
0 deletions
src/app/mainview/components/OngoingCallPage.qml
+
9
−
0
View file @
52b6b2a9
...
...
@@ -64,6 +64,15 @@ Rectangle {
closeInCallConversation
)
}
Connections
{
target
:
UtilsAdapter
function
onChatviewPositionChanged
()
{
mainColumnLayout
.
isHorizontal
=
UtilsAdapter
.
getAppValue
(
Settings
.
Key
.
ShowChatviewHorizontally
)
}
}
function
openInCallConversation
()
{
mainColumnLayout
.
isHorizontal
=
UtilsAdapter
.
getAppValue
(
Settings
.
Key
.
ShowChatviewHorizontally
)
inCallMessageWebViewStack
.
visible
=
true
...
...
This diff is collapsed.
Click to expand it.
src/app/utilsadapter.cpp
+
2
−
0
View file @
52b6b2a9
...
...
@@ -373,6 +373,8 @@ UtilsAdapter::setAppValue(const Settings::Key key, const QVariant& value)
Q_EMIT
showExperimentalSwarm
();
else
if
(
key
==
Settings
::
Key
::
BaseZoom
)
Q_EMIT
changeFontSize
();
else
if
(
key
==
Settings
::
Key
::
ShowChatviewHorizontally
)
Q_EMIT
chatviewPositionChanged
();
}
QString
...
...
This diff is collapsed.
Click to expand it.
src/app/utilsadapter.h
+
1
−
0
View file @
52b6b2a9
...
...
@@ -112,6 +112,7 @@ Q_SIGNALS:
void
debugMessageReceived
(
const
QString
&
message
);
void
showExperimentalSwarm
();
void
changeFontSize
();
void
chatviewPositionChanged
();
private
:
QClipboard
*
clipboard_
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment