Skip to content

Commit

Permalink
Update glance activation method for different platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
mauro-balades committed Oct 30, 2024
1 parent 88f954f commit b64d007
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/browser/app/profile/zen-browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,14 @@ pref('zen.view.compact.color-toolbar', true);
pref('zen.view.compact.color-sidebar', true);

pref('zen.glance.enabled', true);
pref('zen.glance.activation-method', 'alt'); // ctrl, alt, shift, none, hold
pref('zen.glance.hold-duration', 300); // in ms

#ifdef XP_MACOSX
pref('zen.glance.activation-method', 'alt'); // ctrl, alt, shift, none, hold
#else
pref('zen.glance.activation-method', 'ctrl'); // ctrl, alt, shift, none, hold
#endif

pref('zen.view.sidebar-height-throttle', 200); // in ms
pref('zen.view.sidebar-expanded', true);
pref('zen.view.sidebar-expanded.on-hover', false);
Expand Down

0 comments on commit b64d007

Please sign in to comment.