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
5640d2d4
Commit
5640d2d4
authored
Oct 31, 2016
by
Ronan Abhamon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refactoring (in progress)
parent
ee86c545
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
3 deletions
+9
-3
Collapse.qml
tests/ui/modules/Common/Collapse.qml
+1
-2
DropDownDynamicMenu.qml
tests/ui/modules/Common/Popup/DropDownDynamicMenu.qml
+2
-0
AccountStatus.qml
tests/ui/modules/Linphone/Account/AccountStatus.qml
+4
-0
MainWindow.qml
tests/ui/views/App/MainWindow/MainWindow.qml
+1
-1
MainWindowStyle.qml
tests/ui/views/App/Styles/MainWindow/MainWindowStyle.qml
+1
-0
No files found.
tests/ui/modules/Common/Collapse.qml
View file @
5640d2d4
...
...
@@ -25,8 +25,8 @@ Item {
// -----------------------------------------------------------------
implicitWidth
:
button
.
iconSize
implicitHeight
:
button
.
iconSize
implicitWidth
:
button
.
iconSize
ActionButton
{
id
:
button
...
...
@@ -43,7 +43,6 @@ Item {
// -----------------------------------------------------------------
states
:
State
{
name
:
'
collapsed
'
when
:
_collapsed
PropertyChanges
{
...
...
tests/ui/modules/Common/Popup/DropDownDynamicMenu.qml
View file @
5640d2d4
...
...
@@ -5,6 +5,8 @@ import Utils 1.0
// ===================================================================
AbstractDropDownMenu
{
// Can be computed, but for performance usage, it must be given
// in attribute.
property
int
entryHeight
property
int
maxMenuHeight
...
...
tests/ui/modules/Linphone/Account/AccountStatus.qml
View file @
5640d2d4
...
...
@@ -50,6 +50,10 @@ Item {
MouseArea
{
anchors.fill
:
parent
hoverEnabled
:
true
cursorShape
:
containsMouse
?
Qt
.
PointingHandCursor
:
Qt
.
ArrowCursor
onClicked
:
Utils
.
openWindow
(
'
ManageAccounts
'
,
this
)
}
}
tests/ui/views/App/MainWindow/MainWindow.qml
View file @
5640d2d4
...
...
@@ -61,7 +61,7 @@ ApplicationWindow {
id
:
searchBox
Layout.fillWidth
:
true
entryHeight
:
50
// TODO: Remove.
entryHeight
:
MainWindowStyle
.
searchBox
.
entryHeight
maxMenuHeight
:
MainWindowStyle
.
searchBox
.
maxHeight
placeholderText
:
qsTr
(
'
mainSearchBarPlaceholder
'
)
...
...
tests/ui/views/App/Styles/MainWindow/MainWindowStyle.qml
View file @
5640d2d4
...
...
@@ -19,6 +19,7 @@ QtObject {
}
property
QtObject
searchBox
:
QtObject
{
property
int
entryHeight
:
50
property
int
maxHeight
:
300
// See Hick's law for good choice.
}
...
...
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