Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Miguel Lopez
Krita
Commits
8e643e17
Commit
8e643e17
authored
May 01, 2014
by
Friedrich W. H. Kossebau
Browse files
Add ":" after all labels in the filter settings UI
parent
623be008
Changes
4
Hide whitespace changes
Inline
Side-by-side
krita/plugins/filters/blur/wdg_gaussian_blur.ui
View file @
8e643e17
...
...
@@ -65,7 +65,7 @@
<item
row=
"1"
column=
"0"
>
<widget
class=
"QLabel"
name=
"label_2"
>
<property
name=
"text"
>
<string>
Vertical Radius
</string>
<string>
Vertical Radius
:
</string>
</property>
<property
name=
"alignment"
>
<set>
Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter
</set>
...
...
@@ -75,7 +75,7 @@
<item
row=
"0"
column=
"0"
>
<widget
class=
"QLabel"
name=
"label"
>
<property
name=
"text"
>
<string>
Horizontal Radius
</string>
<string>
Horizontal Radius
:
</string>
</property>
<property
name=
"alignment"
>
<set>
Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter
</set>
...
...
krita/plugins/filters/blur/wdg_lens_blur.ui
View file @
8e643e17
...
...
@@ -39,7 +39,7 @@
<item
row=
"2"
column=
"0"
colspan=
"3"
>
<widget
class=
"KIntNumInput"
name=
"irisRadiusSlider"
>
<property
name=
"label"
>
<string>
Radius
</string>
<string>
Radius
:
</string>
</property>
<property
name=
"minimum"
>
<number>
0
</number>
...
...
@@ -55,7 +55,7 @@
<item
row=
"3"
column=
"0"
colspan=
"3"
>
<widget
class=
"KIntNumInput"
name=
"irisRotationSlider"
>
<property
name=
"label"
>
<string>
Rotation
</string>
<string>
Rotation
:
</string>
</property>
<property
name=
"minimum"
>
<number>
0
</number>
...
...
krita/plugins/filters/blur/wdg_motion_blur.ui
View file @
8e643e17
...
...
@@ -84,7 +84,7 @@
<enum>
Qt::StrongFocus
</enum>
</property>
<property
name=
"label"
>
<string>
Angle
</string>
<string>
Angle
:
</string>
</property>
<property
name=
"minimum"
>
<number>
0
</number>
...
...
@@ -109,7 +109,7 @@
</sizepolicy>
</property>
<property
name=
"label"
>
<string>
Length
</string>
<string>
Length
:
</string>
</property>
<property
name=
"minimum"
>
<number>
0
</number>
...
...
krita/plugins/filters/colorsfilters/kis_hsv_adjustment_filter.cpp
View file @
8e643e17
...
...
@@ -115,11 +115,11 @@ void KisHSVConfigWidget::switchType(int index)
emit
sigConfigurationItemChanged
();
switch
(
index
)
{
case
0
:
m_page
->
label_3
->
setText
(
i18n
(
"Value"
));
m_page
->
label_3
->
setText
(
i18n
(
"Value
:
"
));
return
;
case
1
:
default:
m_page
->
label_3
->
setText
(
i18n
(
"Lightness"
));
m_page
->
label_3
->
setText
(
i18n
(
"Lightness
:
"
));
}
}
...
...
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