Gap between title bar and window when hiding menu bar #281
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Hi, I have an issue, whenever I hide the menu bar, a three or four pixel wide transparent gap appears between the title bar and the terminal window. I'm using linux mint 17.3 with cinnamon. Anybody experienced the same issues?

Picture of the bug attached. Thanks!
Want to back this issue? Post a bounty on it! We accept bounties via Bountysource.
I managed a workaround: on the file app/qml/main.qml, there is a line that reads:
y: appSettings.showMenubar ? 0 : -2 // Workaroud to hide the margin in the menubar.
Changing the -2 to a -4 like so:
y: appSettings.showMenubar ? 0 : -4 // Workaroud to hide the margin in the menubar.
fixes the bug in my computer. However, this is evidently not a real fix but a workaround that depends on machine specifics, it seems. Just posting the solution I managed in case it helps anyone, but the real issue still has to be addressed.