Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
F
flatpak-qt-creator
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
c60cfce8
Commit
c60cfce8
authored
May 06, 2011
by
Thomas Hartmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
QmlDesigner.propertyEditor: enlarge labels
parent
41d2e661
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
share/qtcreator/qmldesigner/propertyeditor/Qt/PropertyFrame.qml
...qtcreator/qmldesigner/propertyeditor/Qt/PropertyFrame.qml
+3
-3
share/qtcreator/qmldesigner/propertyeditor/Qt/Visibility.qml
share/qtcreator/qmldesigner/propertyeditor/Qt/Visibility.qml
+3
-1
No files found.
share/qtcreator/qmldesigner/propertyeditor/Qt/PropertyFrame.qml
View file @
c60cfce8
...
...
@@ -6,17 +6,17 @@ WidgetFrame {
minimumWidth
:
300
;
property
int
frameWidth
:
width
property
int
labelWidth
:
7
6
property
int
labelWidth
:
9
6
onFrameWidthChanged
:
{
if
(
frameWidth
>
300
)
{
var
moreSpace
=
(
frameWidth
-
300
)
/
3
;
var
newFixedWidth
=
7
6
+
moreSpace
;
var
newFixedWidth
=
9
6
+
moreSpace
;
if
(
newFixedWidth
>
200
)
newFixedWidth
=
200
;
labelWidth
=
newFixedWidth
;
}
else
{
labelWidth
=
7
6
;
labelWidth
=
9
6
;
}
}
...
...
share/qtcreator/qmldesigner/propertyeditor/Qt/Visibility.qml
View file @
c60cfce8
...
...
@@ -16,7 +16,8 @@ GroupBox {
}
CheckBox
{
id
:
visibleCheckBox
;
text
:
qsTr
(
"
Is visible
"
)
text
:
qsTr
(
"
visible
"
)
toolTip
:
qsTr
(
"
isVisible
"
)
backendValue
:
backendValues
.
visible
;
baseStateFlag
:
isBaseState
;
checkable
:
true
;
...
...
@@ -32,6 +33,7 @@ GroupBox {
}
QWidget
{
layout
:
HorizontalLayout
{
spacing
:
4
Label
{
text
:
""
}
...
...
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