diff options
author | Juan Linietsky <reduzio@gmail.com> | 2016-07-09 14:54:44 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2016-07-09 14:56:08 -0300 |
commit | 864c0e84de9c2a2c5a030ec4ee167f3793e1e962 (patch) | |
tree | 5a01e430c9727519743bde1f7c8c1ed17874abc5 /platform | |
parent | d23d40cfbdb1033848f89a2896701b792ef5e5ad (diff) |
line/col label was changing size with each cursor move, forcing the GUI to resize upwards and costing considerably CPU usage.
It has been changed so it won't resize the UI when modified.
This will make the code editor feel a lot smoother.
Diffstat (limited to 'platform')
-rw-r--r-- | platform/x11/os_x11.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/platform/x11/os_x11.cpp b/platform/x11/os_x11.cpp index 846c61fd1f..20fae72abd 100644 --- a/platform/x11/os_x11.cpp +++ b/platform/x11/os_x11.cpp @@ -1773,7 +1773,6 @@ static String _get_clipboard(Atom p_source, Window x11_window, ::Display* x11_di if (Sown == x11_window) { - printf("returning internal clipboard\n"); return p_internal_clipboard; }; |