diff --git a/Modules/Toast/SimpleToast.qml b/Modules/Toast/SimpleToast.qml index d9bd2f06..e904218b 100644 --- a/Modules/Toast/SimpleToast.qml +++ b/Modules/Toast/SimpleToast.qml @@ -48,7 +48,7 @@ Item { baseColor = Color.mOutline; break; } - return Qt.alpha(baseColor, Settings.data.notifications.backgroundOpacity || 1.0) + return Qt.alpha(baseColor, Settings.data.notifications.backgroundOpacity || 1.0); } } diff --git a/Widgets/NSpinBox.qml b/Widgets/NSpinBox.qml index 71e73298..a25b8596 100644 --- a/Widgets/NSpinBox.qml +++ b/Widgets/NSpinBox.qml @@ -84,7 +84,7 @@ RowLayout { Rectangle { id: spinBoxContainer implicitWidth: 120 - implicitHeight: Math.round((root.baseSize - 4)/2)*2 + implicitHeight: Math.round((root.baseSize - 4) / 2) * 2 radius: height * 0.5 color: Color.mSurfaceVariant border.color: (root.hovering || decreaseArea.containsMouse || increaseArea.containsMouse) ? Color.mHover : Color.mOutline @@ -215,7 +215,7 @@ RowLayout { repeatTimer.start(); } onReleased: stopRepeat() - onExited: stopRepeat() + onExited: stopRepeat() } } @@ -314,7 +314,7 @@ RowLayout { repeatTimer.start(); } onReleased: stopRepeat() - onExited: stopRepeat() + onExited: stopRepeat() } }