Skip to content

Commit

Permalink
Use lower priority for background apps async workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
stuarthayhurst committed Aug 13, 2023
1 parent 04494ae commit c711808
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extension/extension.js
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ class QuickSettingsManager {
*/

//Place the toggles above the background apps entry
GLib.idle_add(GLib.PRIORITY_DEFAULT_IDLE, () => {
GLib.idle_add(GLib.PRIORITY_LOW, () => {
this._quickSettingToggles.forEach((item) => {
QuickSettingsMenu.menu._grid.set_child_below_sibling(item,
QuickSettingsMenu._backgroundApps.quickSettingsItems[0]);
Expand Down

0 comments on commit c711808

Please sign in to comment.