diff --git a/prefs.js b/prefs.js index 58d83f052..6889b7a6b 100644 --- a/prefs.js +++ b/prefs.js @@ -1754,7 +1754,8 @@ function pref_hotkey_handler(e) { if (keycode == 191 && shift_key) { // ? if (!Element.visible("hotkey_help_overlay")) { - Element.show("hotkey_help_overlay"); + //Element.show("hotkey_help_overlay"); + Effect.Appear("hotkey_help_overlay", {duration : 0.3}); } else { Element.hide("hotkey_help_overlay"); } diff --git a/prefs.php b/prefs.php index 01a731695..288a5f2be 100644 --- a/prefs.php +++ b/prefs.php @@ -110,7 +110,7 @@ window.onload = init; -->
- ? Keyboard shortcuts + ? Keyboard shortcuts
 
diff --git a/tt-rss.js b/tt-rss.js index f6d603275..dd148b3d0 100644 --- a/tt-rss.js +++ b/tt-rss.js @@ -530,7 +530,8 @@ function quickMenuGo(opid) { } if (opid == "qmcHKhelp") { - Element.show("hotkey_help_overlay"); + //Element.show("hotkey_help_overlay"); + Effect.Appear("hotkey_help_overlay", {duration : 0.3}); } } catch (e) { @@ -973,7 +974,8 @@ function hotkey_handler(e) { if (keycode == 191 && shift_key) { // ? if (!Element.visible("hotkey_help_overlay")) { - Element.show("hotkey_help_overlay"); + //Element.show("hotkey_help_overlay"); + Effect.Appear("hotkey_help_overlay", {duration : 0.3}); } else { Element.hide("hotkey_help_overlay"); }