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
6a9af0e0
Commit
6a9af0e0
authored
Oct 17, 2016
by
Ronan Abhamon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(DroppableTextArea): fix style and add `clip=true` on Flickable
parent
5e3e5484
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
5 deletions
+13
-5
DroppableTextArea.qml
tests/ui/modules/Common/DroppableTextArea.qml
+8
-0
PresenceLevel.qml
tests/ui/modules/Linphone/Contact/PresenceLevel.qml
+1
-1
Conversation.qml
tests/ui/views/MainWindow/Conversation.qml
+4
-4
No files found.
tests/ui/modules/Common/DroppableTextArea.qml
View file @
6a9af0e0
...
...
@@ -36,12 +36,20 @@ Item {
TextArea.flickable
:
TextArea
{
id
:
textArea
background
:
Rectangle
{
color
:
'
#FFFFFF
'
border.color
:
'
#D0D8DE
'
}
rightPadding
:
fileChooserButton
.
width
+
fileChooserButton
.
anchors
.
rightMargin
+
DroppableTextAreaStyle
.
fileChooserButton
.
margins
wrapMode
:
TextArea
.
Wrap
}
anchors.fill
:
parent
// Necessary, else `placeHolderText` can get out of the component.
clip
:
true
}
// Handle click to select files.
...
...
tests/ui/modules/Linphone/Contact/PresenceLevel.qml
View file @
6a9af0e0
import
QtQuick
2.7
import
Common
1.0
import
Linphone
1.0
/* It contains `Presence`. */
import
Linphone
1.0
// ===================================================================
...
...
tests/ui/views/MainWindow/Conversation.qml
View file @
6a9af0e0
...
...
@@ -120,14 +120,14 @@ ColumnLayout {
}
}
Borders
{
Rectangle
{
Layout.fillWidth
:
true
Layout.preferredHeight
:
70
borderColor
:
'
#C7C7C7
'
leftWidth
:
1
Layout.preferredHeight
:
80
color
:
'
#E2E9EF
'
DroppableTextArea
{
anchors.fill
:
parent
anchors.margins
:
10
placeholderText
:
qsTr
(
'
newMessagePlaceholder
'
)
}
}
...
...
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