Skip to content

Commit

Permalink
Merge pull request #1833 from philippun1/gnome44
Browse files Browse the repository at this point in the history
Initial gnome 44 support
  • Loading branch information
charlesg99 authored Feb 26, 2023
2 parents 2724bcb + 8a96527 commit e4c1ca3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"uuid": "[email protected]",
"name": "Dash to Panel",
"description": "An icon taskbar for the Gnome Shell. This extension moves the dash into the gnome main panel so that the application launchers and system tray are combined into a single panel, similar to that found in KDE Plasma and Windows 7+. A separate dock is no longer needed for easy access to running and favorited applications.\n\nFor a more traditional experience, you may also want to use Tweak Tool to enable Windows > Titlebar Buttons > Minimize & Maximize.\n\nFor the best support, please report any issues on Github. Dash-to-panel is developed and maintained by @jderose9 and @charlesg99.",
"shell-version": [ "42", "43" ],
"shell-version": [ "42", "43", "44" ],
"url": "https://github.com/home-sweet-gnome/dash-to-panel",
"gettext-domain": "dash-to-panel",
"version": 9999
Expand Down
2 changes: 1 addition & 1 deletion prefs.js
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ const Preferences = class {

let listbox = this._builder.get_object('taskbar_display_listbox');
let provider = new Gtk.CssProvider();
provider.load_from_data('list { background-color: transparent; }');
provider.load_from_data('list { background-color: transparent; }', -1);
let context = listbox.get_style_context();
context.add_provider(provider, Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION);

Expand Down
2 changes: 1 addition & 1 deletion utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ var DisplayWrapper = {
},

getMonitorManager() {
return global.screen || Meta.MonitorManager.get();
return global.screen || global.backend.get_monitor_manager();
}
};

Expand Down

0 comments on commit e4c1ca3

Please sign in to comment.