Skip to content

Commit 654af95

Browse files
committed
Keyboard applet: Cycle layouts on middle-click
1 parent 1ccef7d commit 654af95

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

files/usr/share/cinnamon/applets/[email protected]/applet.js

+10
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,16 @@ class CinnamonKeyboardApplet extends Applet.TextIconApplet {
185185
this._config.connect('config-changed', Lang.bind(this, this._syncConfig));
186186
}
187187

188+
_onButtonPressEvent(actor, event) {
189+
// Cycle to the next layout
190+
if(event.get_button() === 2) {
191+
let selected_group = this._config.get_current_group();
192+
let new_group = (selected_group + 1) % this._layoutItems.length;
193+
this._config.set_current_group(new_group);
194+
}
195+
return Applet.Applet.prototype._onButtonPressEvent.call(this, actor, event);
196+
}
197+
188198
on_applet_clicked(event) {
189199
this.menu.toggle();
190200
}

0 commit comments

Comments
 (0)