diff options
author | Devaev Maxim <[email protected]> | 2021-04-23 20:47:34 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2021-04-23 20:47:34 +0300 |
commit | e674cef02e157226615e88d275f6d0b4f2ea8e5a (patch) | |
tree | bd9a66a12225fd6dc1b4c804efbd74fe55d62e13 | |
parent | 8e489f05705000183f6534305ce2d53e1ccb8267 (diff) |
fixed button title
-rw-r--r-- | web/share/js/wm.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/share/js/wm.js b/web/share/js/wm.js index e735f526..016e39b0 100644 --- a/web/share/js/wm.js +++ b/web/share/js/wm.js @@ -106,7 +106,7 @@ function __WindowManager() { let el_orig_button = el_window.querySelector(".window-header .window-button-original"); if (el_orig_button) { - el_maximize_button.title = "Reduce window to its original size and center it"; + el_orig_button.title = "Reduce window to its original size and center it"; tools.setOnClick(el_orig_button, function() { el_window.style.width = ""; el_window.style.height = ""; |