Skip to content

Commit

Permalink
Moved quick settings into separate group
Browse files Browse the repository at this point in the history
  • Loading branch information
stuarthayhurst committed Aug 20, 2023
1 parent 2ff02e3 commit dbd00d5
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions extension/prefs.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,15 +102,16 @@ export default class PrivacyPreferences extends ExtensionPreferences {

let groupsInfo = [
//Group ID, translated title
['general', _('General settings')]
['general', _('General settings')],
['menu', _('Menu settings')]
];

let settingsInfo = [
//Group ID, setting key, title, subtitle
['general', 'move-icon-right', _('Move status icon right'), _('Force the icon to move to right side of the status area')],
['general', 'use-quick-settings', _('Use quick settings menu'), _('Use the system quick settings area, instead of an indicator')],
['general', 'group-quick-settings', _('Group quick settings'), _('Group quick settings together, into a menu')],
['general', 'use-quick-subtitle', _('Use quick settings subtitle'), _('Show the privacy status in the quick settings subtitle')]
['menu', 'use-quick-settings', _('Use quick settings menu'), _('Use the system quick settings area, instead of an indicator')],
['menu', 'group-quick-settings', _('Group quick settings'), _('Group quick settings together, into a menu')],
['menu', 'use-quick-subtitle', _('Use quick settings subtitle'), _('Show the privacy status in the quick settings subtitle')]
];

//Create settings page from info
Expand Down

0 comments on commit dbd00d5

Please sign in to comment.