We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64cc125 commit dffbeccCopy full SHA for dffbecc
files/usr/share/cinnamon/applets/menu@cinnamon.org/applet.js
@@ -1508,6 +1508,7 @@ class CinnamonMenuApplet extends Applet.TextIconApplet {
1508
}
1509
1510
on_orientation_changed (orientation) {
1511
+ this.orientation = orientation;
1512
this._updateIconAndLabel();
1513
this._size_dirty = true;
1514
@@ -1558,6 +1559,8 @@ class CinnamonMenuApplet extends Applet.TextIconApplet {
1558
1559
appletDefinition.location_label === 'center') {
1560
const monitor = Main.layoutManager.findMonitorForActor(this.menu.actor);
1561
this.menu.shiftToPosition(Math.floor(monitor.width / 2) + monitor.x);
1562
+ } else {
1563
+ this.menu.shiftToPosition(-1);
1564
1565
1566
Mainloop.idle_add(() => {
0 commit comments