Reduce window minimum size #1834
Poent
started this conversation in
Ideas & New Features
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
Currently Mu Editor sets it's minimum window size as half the screen width and height. This is unnecessarily restricts user customization and is especially noticeable on high resolution monitors and ultra-wide screens.
This restriction is currently implemented under interface/mu/main.py, line 1139
self.setMinimumSize(screen_width // 2, screen_height // 2)
I recommend that line 1139 be adjusted to:
self.setMinimumSize(screen_width // 4, screen_height // 4)
Beta Was this translation helpful? Give feedback.
All reactions