File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 78
78
return 0.5 + w;
79
79
if (w == 0.5 )
80
80
return 1.0 ;
81
- return w * 2
81
+ return w * 2 ;
82
82
}
83
83
84
84
function scaleValueToWheelV1 (v ) {
89
89
if (v == 1.0 )
90
90
return 0.5 ;
91
91
if (v > 1.0 )
92
- return v / 2.0
92
+ return v / 2.0 ;
93
93
}
94
94
95
95
function scaleWheelToValueV0 (w , f ) {
Original file line number Diff line number Diff line change @@ -259,8 +259,8 @@ Item {
259
259
acceptedButtons: Qt .LeftButton
260
260
cursorShape: Qt .SizeAllCursor
261
261
drag .target : rectangle
262
- property var startX;
263
- property var startY;
262
+ property var startX
263
+ property var startY
264
264
onDoubleClicked: {
265
265
_positionDragLocked = ! _positionDragLocked;
266
266
filter .set (' _shotcut:positionDragLocked' , _positionDragLocked);
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright (c) 2014-2023 Meltytech, LLC
2
+ * Copyright (c) 2014-2025 Meltytech, LLC
3
3
*
4
4
* This program is free software: you can redistribute it and/or modify
5
5
* it under the terms of the GNU General Public License as published by
@@ -26,7 +26,7 @@ Rectangle {
26
26
property int selectedIndex: Shotcut .Filter .NoCurrentFilter
27
27
28
28
signal currentFilterRequested (int attachedIndex)
29
- signal copyFilterRequested ()
29
+ signal copyFilterRequested
30
30
31
31
function clearCurrentFilter () {
32
32
if (filterConfig .item ) {
You can’t perform that action at this time.
0 commit comments