Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linphone-desktop
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
linphone-desktop
Commits
08440e39
Commit
08440e39
authored
Sep 27, 2016
by
Ronan Abhamon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(app): little fixes
parent
7fdd7f1a
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
6 deletions
+15
-6
Constants.qml
tests/ui/modules/Linphone/Constants.qml
+1
-0
DialogDescription.qml
tests/ui/modules/Linphone/Dialog/DialogDescription.qml
+5
-4
DialogPlus.qml
tests/ui/modules/Linphone/Dialog/DialogPlus.qml
+6
-2
DialogStyle.qml
tests/ui/modules/Linphone/Styles/DialogStyle.qml
+3
-0
No files found.
tests/ui/modules/Linphone/Constants.qml
View file @
08440e39
...
...
@@ -22,5 +22,6 @@ QtObject {
property
string
j
:
'
#434343
'
// MenuEntry Selected.
property
string
k
:
'
#FFFFFF
'
// Text color.
property
string
l
:
'
#000000
'
// Text color.
}
}
tests/ui/modules/Linphone/Dialog/DialogDescription.qml
View file @
08440e39
...
...
@@ -9,10 +9,10 @@ import Linphone.Styles 1.0
Item
{
property
alias
text
:
description
.
text
height
:
(
!
text
&&
DialogStyle
.
description
.
verticalMargin
)
||
undefined
implicitHeight
:
(
text
&&
(
description
.
implicitHeight
+
DialogStyle
.
description
.
verticalMargin
*
2
))
||
0
height
:
!
text
?
DialogStyle
.
description
.
verticalMargin
:
undefined
implicitHeight
:
text
?
description
.
implicitHeight
+
DialogStyle
.
description
.
verticalMargin
*
2
:
0
Text
{
id
:
description
...
...
@@ -20,6 +20,7 @@ Item {
anchors.fill
:
parent
anchors.leftMargin
:
DialogStyle
.
leftMargin
anchors.rightMargin
:
DialogStyle
.
rightMargin
color
:
DialogStyle
.
description
.
color
font.pointSize
:
DialogStyle
.
description
.
fontSize
verticalAlignment
:
Text
.
AlignVCenter
wrapMode
:
Text
.
WordWrap
...
...
tests/ui/modules/Linphone/Dialog/DialogPlus.qml
View file @
08440e39
...
...
@@ -56,9 +56,13 @@ Window {
Row
{
id
:
buttons
Layout.alignment
:
(
centeredButtons
&&
Qt
.
AlignHCenter
)
||
Qt
.
AlignLeft
Layout.alignment
:
centeredButtons
?
Qt
.
AlignHCenter
:
Qt
.
AlignLeft
Layout.bottomMargin
:
DialogStyle
.
buttons
.
bottomMargin
Layout.leftMargin
:
(
!
centeredButtons
&&
DialogStyle
.
leftMargin
)
||
undefined
Layout.leftMargin
:
!
centeredButtons
?
DialogStyle
.
leftMargin
:
undefined
Layout.topMargin
:
DialogStyle
.
buttons
.
topMargin
spacing
:
DialogStyle
.
buttons
.
spacing
}
...
...
tests/ui/modules/Linphone/Styles/DialogStyle.qml
View file @
08440e39
pragma
Singleton
import
QtQuick
2.7
import
Linphone
1.0
QtObject
{
property
int
leftMargin
:
50
property
int
rightMargin
:
50
...
...
@@ -19,5 +21,6 @@ QtObject {
property
QtObject
description
:
QtObject
{
property
int
fontSize
:
12
property
int
verticalMargin
:
25
property
string
color
:
Constants
.
colors
.
l
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment