Re: [Github-comments] [geany/geany] Windows/GTK3: Message window reduces its height after restart (#2591)

2021-10-03 Thread Enrico Tröger
Closed #2591 via #2892. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/geany/geany/issues/2591#event-5399486057

Re: [Github-comments] [geany/geany] Windows/GTK3: Message window reduces its height after restart (#2591)

2021-09-05 Thread Enrico Tröger
Thanks guys, for your suggestions. Was could it have been? - CSD - any kind of timing issue related to setting the pane position - nor a GTK bug - ... And the winner is: some old _eht16-Windows-special-hack_ For reasons I don't remember anymore, I added in https://github.com/geany/geany/commit

Re: [Github-comments] [geany/geany] Windows/GTK3: Message window reduces its height after restart (#2591)

2021-09-03 Thread elextr
@eht16 does the value of `msgwindow_position` in geany.conf change each time you open and shut Geany? -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/geany/geany/issues/2591#issuecomment-912845799

Re: [Github-comments] [geany/geany] Windows/GTK3: Message window reduces its height after restart (#2591)

2021-09-03 Thread Colomban Wendling
@eht16 if you can try and debug it, I suppose you'll see that the value you get with `gtk_paned_get_position()` is smaller than the one set with `gtk_paned_set_position()` a couple ms before? If so, a sad hack could be something like: ```C gtk_paned_set_position(paned, pos); for (int i = 1; i <

Re: [Github-comments] [geany/geany] Windows/GTK3: Message window reduces its height after restart (#2591)

2021-09-03 Thread Colomban Wendling
I'm pretty sure we've had a similar report a while back (one of the paned shrinking), yet I can't seem to find it -- @codebrainz ? :slightly_smiling_face: And I'm afraid we didn't find the reason why it was, and didn't fix it. -- You are receiving this because you are subscribed to this thread

Re: [Github-comments] [geany/geany] Windows/GTK3: Message window reduces its height after restart (#2591)

2020-09-20 Thread Matthew Brush
This is just a guess, but perhaps it due to GTK3/CSD stuff and it's not taking the whole window bounds, including the titlebar and window borders, into account? That would throw it off by like 20-30px every time. -- You are receiving this because you are subscribed to this thread. Reply to this

[Github-comments] [geany/geany] Windows/GTK3: Message window reduces its height after restart (#2591)

2020-09-20 Thread Enrico Tröger
Version: GIT 55e0998c OS: Windows 7 GTK version: 3 After each start of Geany, the message window height is reduced so that it is completely hidden (aka height=0) after three or four starts. I have no idea yet why this happens but we need to look into this and fix it before releasing Geany with