Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
077c9181
Commit
077c9181
authored
Aug 05, 2010
by
Thomas Hartmann
Browse files
QuickToolbar: bugfix
missing else
parent
2368252f
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/qmldesigner/components/propertyeditor/contextpanetextwidget.cpp
View file @
077c9181
...
...
@@ -169,7 +169,7 @@ void ContextPaneTextWidget::setProperties(QmlJS::PropertyReader *propertyReader)
ui
->
styleComboBox
->
setEnabled
(
true
);
if
(
style
==
QLatin1String
(
"Text.Outline"
)
||
style
==
QLatin1String
(
"Outline"
))
ui
->
styleComboBox
->
setCurrentIndex
(
1
);
if
(
style
==
QLatin1String
(
"Text.Raised"
)
||
style
==
QLatin1String
(
"Raised"
))
else
if
(
style
==
QLatin1String
(
"Text.Raised"
)
||
style
==
QLatin1String
(
"Raised"
))
ui
->
styleComboBox
->
setCurrentIndex
(
2
);
else
if
(
style
==
QLatin1String
(
"Text.Sunken"
)
||
style
==
QLatin1String
(
"Sunken"
))
ui
->
styleComboBox
->
setCurrentIndex
(
3
);
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment