Skip to content

Commit 3034d03

Browse files
committed
qmlformat
1 parent a93f289 commit 3034d03

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/qml/filters/color/ui.qml

+2-2
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ Item {
7878
return 0.5 + w;
7979
if (w == 0.5)
8080
return 1.0;
81-
return w * 2
81+
return w * 2;
8282
}
8383

8484
function scaleValueToWheelV1(v) {
@@ -89,7 +89,7 @@ Item {
8989
if (v == 1.0)
9090
return 0.5;
9191
if (v > 1.0)
92-
return v / 2.0
92+
return v / 2.0;
9393
}
9494

9595
function scaleWheelToValueV0(w, f) {

src/qml/modules/Shotcut/Controls/RectangleControl.qml

+2-2
Original file line numberDiff line numberDiff line change
@@ -259,8 +259,8 @@ Item {
259259
acceptedButtons: Qt.LeftButton
260260
cursorShape: Qt.SizeAllCursor
261261
drag.target: rectangle
262-
property var startX;
263-
property var startY;
262+
property var startX
263+
property var startY
264264
onDoubleClicked: {
265265
_positionDragLocked = !_positionDragLocked;
266266
filter.set('_shotcut:positionDragLocked', _positionDragLocked);

src/qml/views/filter/filterview.qml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2014-2023 Meltytech, LLC
2+
* Copyright (c) 2014-2025 Meltytech, LLC
33
*
44
* This program is free software: you can redistribute it and/or modify
55
* it under the terms of the GNU General Public License as published by
@@ -26,7 +26,7 @@ Rectangle {
2626
property int selectedIndex: Shotcut.Filter.NoCurrentFilter
2727

2828
signal currentFilterRequested(int attachedIndex)
29-
signal copyFilterRequested()
29+
signal copyFilterRequested
3030

3131
function clearCurrentFilter() {
3232
if (filterConfig.item) {

0 commit comments

Comments
 (0)