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
4884708a
Commit
4884708a
authored
3 years ago
by
Ming Rui Zhang
Committed by
Andreas Traczyk
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
welcomepage: refine showAdvancedButton toolTipText
Gitlab:
#460
Change-Id: I9f6bba8b93974922ad45f68365e2eb8d60eff2b3
parent
bbdecfaa
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/constant/JamiStrings.qml
+1
-0
1 addition, 0 deletions
src/constant/JamiStrings.qml
src/wizardview/components/WelcomePage.qml
+7
-3
7 additions, 3 deletions
src/wizardview/components/WelcomePage.qml
with
8 additions
and
3 deletions
src/constant/JamiStrings.qml
+
1
−
0
View file @
4884708a
...
...
@@ -464,6 +464,7 @@ Item {
property
string
importAccountFromBackup
:
qsTr
(
"
Import account from backup file
"
)
property
string
advancedFeatures
:
qsTr
(
"
Advanced features
"
)
property
string
showAdvancedFeatures
:
qsTr
(
"
Show advanced features
"
)
property
string
hideAdvancedFeatures
:
qsTr
(
"
Hide advanced features
"
)
property
string
connectJAMSServer
:
qsTr
(
"
Connect to a JAMS server
"
)
property
string
createFromJAMS
:
qsTr
(
"
Create account from Jami Account Management Server (JAMS)
"
)
property
string
addSIPAccount
:
qsTr
(
"
Add a SIP account
"
)
...
...
This diff is collapsed.
Click to expand it.
src/wizardview/components/WelcomePage.qml
+
7
−
3
View file @
4884708a
...
...
@@ -162,6 +162,8 @@ Rectangle {
MaterialButton
{
id
:
showAdvancedButton
property
bool
showAdvanced
:
false
Layout.alignment
:
Qt
.
AlignCenter
Layout.bottomMargin
:
newSIPAccountButton
.
visible
?
0
:
JamiTheme
.
wizardViewPageBackButtonMargins
...
...
@@ -170,7 +172,8 @@ Rectangle {
text
:
JamiStrings
.
advancedFeatures
fontCapitalization
:
Font
.
AllUppercase
toolTipText
:
JamiStrings
.
showAdvancedFeatures
toolTipText
:
showAdvanced
?
JamiStrings
.
hideAdvancedFeatures
:
JamiStrings
.
showAdvancedFeatures
color
:
JamiTheme
.
buttonTintedBlue
hoveredColor
:
JamiTheme
.
buttonTintedBlueHovered
pressedColor
:
JamiTheme
.
buttonTintedBluePressed
...
...
@@ -179,8 +182,9 @@ Rectangle {
hoverEnabled
:
true
onClicked
:
{
connectAccountManagerButton
.
visible
=
!
connectAccountManagerButton
.
visible
newSIPAccountButton
.
visible
=
!
newSIPAccountButton
.
visible
showAdvanced
=
!
showAdvanced
connectAccountManagerButton
.
visible
=
showAdvanced
newSIPAccountButton
.
visible
=
showAdvanced
}
}
...
...
This diff is collapsed.
Click to expand it.
ovari
@ovari
mentioned in issue
#459 (closed)
·
3 years ago
mentioned in issue
#459 (closed)
mentioned in issue #459
Toggle commit list
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