File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed
src/qml/value-editor/filters Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -68,6 +68,8 @@ RowLayout {
68
68
id: streamRangeSlider
69
69
objectName: " rdm_stream_filter_range_slider"
70
70
71
+ implicitWidth: 100
72
+
71
73
Layout .fillWidth : true
72
74
palette .midlight : sysPalette .button
73
75
palette .dark : enabled ? sysPalette .highlight : disabledSysPalette .highlight
@@ -78,11 +80,11 @@ RowLayout {
78
80
stepSize: 1.0
79
81
snapMode: Slider .SnapAlways
80
82
81
- first .handle .implicitWidth : 20
82
- first .handle .implicitHeight : 20
83
+ first .handle .implicitWidth : PlatformUtils . isOSXRetina (Screen) ? 15 : 20
84
+ first .handle .implicitHeight : PlatformUtils . isOSXRetina (Screen) ? 15 : 20
83
85
84
- second .handle .implicitWidth : 20
85
- second .handle .implicitHeight : 20
86
+ second .handle .implicitWidth : PlatformUtils . isOSXRetina (Screen) ? 15 : 20
87
+ second .handle .implicitHeight : PlatformUtils . isOSXRetina (Screen) ? 15 : 20
86
88
87
89
first .onPressedChanged : {
88
90
if (! first .pressed ) {
@@ -129,9 +131,9 @@ RowLayout {
129
131
130
132
BetterButton {
131
133
objectName: " rdm_stream_filter_apply_btn"
132
-
134
+ implicitWidth : 30
133
135
iconSource: " qrc:/images/filter.svg"
134
- text : qsTranslate (" RDM" ," Apply filter" )
136
+ tooltip : qsTranslate (" RDM" ," Apply filter" )
135
137
enabled: (streamRangeStartField .isEdited || streamRangeEndField .isEdited ) && streamFilter .enabled
136
138
137
139
onClicked: {
You can’t perform that action at this time.
0 commit comments