Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PopupResizeHandler: return correct popup size bugfix #12804

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions js/ui/applet.js
Original file line number Diff line number Diff line change
Expand Up @@ -603,7 +603,7 @@
this._applet_context_menu.addMenuItem(this.context_menu_item_about);
}

if (!this._meta["hide-configuration"] && GLib.file_test(this._meta["path"] + "/settings-schema.json", GLib.FileTest.EXISTS)) {

Check failure on line 606 in js/ui/applet.js

View workflow job for this annotation

GitHub Actions / build / build (mint22, linuxmintd/mint22-amd64, Mint 22, true) / Mint 22

FileTest ==> file test
if (this.context_menu_item_configure == null) {
this.context_menu_item_configure = new PopupMenu.PopupIconMenuItem(_("Configure..."),
"system-run",
Expand Down Expand Up @@ -1064,8 +1064,8 @@
let [stageX, stageY] = event.get_coords();
this._drag_start_position = {x: stageX, y: stageY};
this._drag_start_size = {width: this.actor.width, height: this.actor.height};
this._init_user_width = this._get_user_width();
this._init_user_height = this._get_user_height();
this._init_user_width = this._new_user_width = this._get_user_width();
this._init_user_height = this._new_user_height = this._get_user_height();

return true;
}
Expand Down
Loading