-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: 修复了计算器UI 按钮间隔不一致的问题 #104
base: master
Are you sure you want to change the base?
Conversation
由于原代码的按钮区域大未正确设置,且按钮设置为固定大小,而 QGridLayout会自动调整,导致按钮间隔不一致。 现在略微修改一些Widget和按钮宽度,将按钮大小调整为用setMaximumSize或setMinimumSize设置,使得各模式下按钮布局间隔均一致。
TAG Bot New tag: 6.0.1 |
TAG Bot New tag: 6.0.2 |
TAG Bot New tag: 6.5.0 |
TAG Bot New tag: 6.5.1 |
TAG Bot New tag: 6.5.2 |
TAG Bot New tag: 6.5.3 |
TAG Bot New tag: 6.5.4 |
TAG Bot New tag: 6.5.5 |
TAG Bot New tag: 6.5.6 |
原issue:
由于原代码的按钮区域大未正确设置,且按钮设置为固定大小,而 QGridLayout会自动调整,导致按钮间隔不一致。 现在略微修改一些Widget和按钮宽度,将按钮大小调整为用setMaximumSize或setMinimumSize设置,使得各模式下按钮布局间隔均一致。
修改前后对比(左图为修改后效果):
标准模式最明显
科学模式
程序员模式
整体布局更加和谐,特别是标准模式、科学模式。