We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83c8f58 commit 1bc8c0bCopy full SHA for 1bc8c0b
res/icons/CMakeLists.txt
@@ -12,4 +12,5 @@ qt_add_resources(
12
green_flag.svg
13
stop.svg
14
turbo.svg
15
+ mute.svg
16
)
res/icons/mute.svg
src/app/qml/main.qml
@@ -79,6 +79,10 @@ ApplicationWindow {
79
AppMenuBar.fps60Mode = !AppMenuBar.fps60Mode
80
break;
81
82
+ case Qt.ControlModifier:
83
+ AppMenuBar.mute = !AppMenuBar.mute
84
+ break;
85
+
86
default:
87
player.stop()
88
player.start()
@@ -96,6 +100,13 @@ ApplicationWindow {
96
100
}
97
101
98
102
103
+ IconLabel {
104
+ icon.name: "mute"
105
+ icon.color: "transparent"
106
+ text: ""
107
+ visible: AppMenuBar.mute
108
+ }
109
99
110
IconLabel {
111
icon.name: "turbo"
112
icon.color: "transparent"
0 commit comments