WrapEarnPass left a comment (geany/geany#4627) TL;DR: Those are normal values for a non-maximized geany instance. I don't know. Try the official image?
Those were in geany.conf? geometry should be in session.conf. Try resizing your geany (maximize, close, cat geany.conf), (manually resize smaller, close, cat geany.conf), (View>FullScreen, close, cat geany.conf), and see if your geo is updating appropriately? It is odd that your geo is in the geany.conf, and not session.conf, this may be a side effect of the homebrew packaging process. I know homebrew has a linux version, but it's been disallowed due to high risk, so I can't test it. ```treeview_position=238``` treeview width. treeview is the container for sidebar pages ```msgwindow_position=504``` msgwindow offset from top, bigger means smaller msgwindow. Msgwindow is the container for status/compiler/messages ```geometry=42;25;1625;723;0;``` geany's layout, first two are offset from monitor(left, top), then width, hieght, and is_maximized ```sidebar_page=0``` which sidebar page is focused. Using your geometry, and manually editing my session.conf file outside of geany I get <img width="406" height="651" alt="Image" src="https://github.com/user-attachments/assets/e10e537b-106f-4677-a438-a2d0f3c64161" /> As a counter example, when my geany is maximized, this is my geo ``` [geany] treeview_position=195 msgwindow_position=821 geometry=0;27;2048;1101;1; sidebar_page=1 ``` my offset is 0,27 because my window manager has a statusbar at the top that is 27 pixels high. my monitor is a 2048x1152, so after dropping the 27pixel statusbar, and 24px window handle (titlebar), geany gets a 2048x1101 space to run in. -- Reply to this email directly or view it on GitHub: https://github.com/geany/geany/issues/4627#issuecomment-5166291205 You are receiving this because you are subscribed to this thread. Message ID: <geany/geany/issues/4627/[email protected]>
