-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Backport improved spacing from dev (#217)
- Main and settings window are slightly wider - Shifted everything to the right in the main window to give more place to the left column - Re-aligned elements in the left column - All windows have an even pixel size - All buttons are at least 24px high - Increase spacing between horizontal label elements to account for weird DPI issues on some machines - Max FPS button has been made larger so the text doesn't cut off - X, Y, Width and Height combo boxes have all been made larger to fit 4 numbers - Re-aligned hotkeys elements - Give more height to multiline labels - Align the logo in the about page to the right - Update checker text is all shifted to the left - Remove extra leftover `btn_donateCC_LG` pixmap in about (we use html to render the image with a link) - tabstop on the hotkey buttons, not the input fields Designer view: ![image](https://user-images.githubusercontent.com/1350584/233792189-8b743b92-3168-4531-bc4d-56890baec402.png) Sanity check on Windows 10: ![image](https://user-images.githubusercontent.com/1350584/233792200-6d3c054d-2bf7-43dc-9bd1-26d9760b0142.png)
- Loading branch information
Showing
10 changed files
with
226 additions
and
228 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
; We don't run mypy in the CI. This is just to help anyone who would like to use it manually. | ||
; Namely, the mypy_primer tool. | ||
[mypy] | ||
strict=true | ||
strict = true | ||
; Implicit return types ! | ||
disallow_untyped_calls=false | ||
disallow_untyped_defs=false | ||
disallow_incomplete_defs=false | ||
disallow_untyped_calls = false | ||
disallow_untyped_defs = false | ||
disallow_incomplete_defs = false | ||
|
||
; Of course my stubs are going to be incomplete. Otherwise they'd be on typeshed! | ||
; Mypy becomes really whack with its errors inside these stubs though | ||
mypy_path=typings,src | ||
mypy_path = typings,src | ||
; exclude doesn't work with strict=true Why? | ||
exclude=.*(typings|gen)/.* | ||
exclude = .*(typings|gen)/.* | ||
|
||
[mypy-gen.*,cv2.*,] | ||
; strict=false ; Doesn't work in overrides | ||
follow_imports=skip | ||
implicit_reexport=true | ||
strict_optional=false | ||
disable_error_code=attr-defined, misc, name-defined | ||
follow_imports = skip | ||
implicit_reexport = true | ||
strict_optional = false | ||
disable_error_code = attr-defined, misc, name-defined |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.