Geany hangs on popup: ![Screenshot from 2020-08-07 12-34-59](https://user-images.githubusercontent.com/5121781/89632503-f6825d00-d8aa-11e...)
After pressing 'Reload' or other, popup dissapears after minute on so (during that time Geany is not responding) and after that Geany window is stretched over both monitors. (Could this be some kind of widget resize problem?)
Not sure about the resize issue, but from your screenshot it looks like it has a bunch of code all on one line. Geany/Scintilla is notoriously slow with extremely long lines, especially when line wrapping is enabled.
Aside from trying to disable line-wrapping, there's a couple things you can possibly do if you control whatever generated that code. If you are using C++11 or later you can use [raw string literals](https://en.cppreference.com/w/cpp/language/string_literal) or if not use plain C-style string literal concatenation (described on same link). Both would allow to split the generated code onto multiple lines which should help with the Geany performance issue as well as to make the generated code more readable.
I believe this is some kind of other issue with UI. I tested with small file just some chars and same happened. Tested and what I tough was that it takes long time was incorrect: Real problem is that the dialogue do no hide away until I lost focus from geany and come back + screen size is grown big. Please see attachments from dual display.
![Screenshot from 2020-08-07 17-23-59](https://user-images.githubusercontent.com/5121781/89656189-e9c62f00-d8d3-11e...) ![Screenshot from 2020-08-07 17-25-41](https://user-images.githubusercontent.com/5121781/89656196-ec288900-d8d3-11e...) ![Screenshot from 2020-08-07 17-25-46](https://user-images.githubusercontent.com/5121781/89656201-ed59b600-d8d3-11e...)
You could try running Geany from the command line with the `-p`/`--no-plugins` option. It's possible that whatever debugger plugin you have loaded is not designed to fit in the message window area when it's on the right like you have it. If it doesn't happen when no plugins are loaded, try and run it normally again but change the preference to put the message window back in the bottom to see if that's what's going on.
What distro and desktop are you using?
codebrainz: I will test tomorrow (too drunk at the moment... :) elextr:Fedora 32 (Workstation Edition) uname: 5.7.11-200.fc32.x86_64 #1 SMP Wed Jul 29 17:15:52 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
forgot: Gnome version 3.36.4
Ok trapped, its this: ![Screenshot from 2020-08-08 09-28-58](https://user-images.githubusercontent.com/5121781/89704126-191f7f00-d95a-11e...)
disabled it and now works ok.
Also changing layout as below works. ![Screenshot from 2020-08-08 09-32-16](https://user-images.githubusercontent.com/5121781/89704143-3b190180-d95a-11e...)
github-comments@lists.geany.org