Skip to content

Commit 1edb400

Browse files
committed
fixes typo that broke Windows builds
1 parent 6a4dd60 commit 1edb400

5 files changed

Lines changed: 7 additions & 6 deletions

File tree

src/artisanlib/main.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2789,13 +2789,14 @@ def __init__(self, parent:QWidget|None = None, *, locale:str, artisanviewerFirst
27892789
if platform.system() == 'Windows':
27902790
# TODO: remove # pylint: disable=fixme
27912791
self.main_button_min_width_str = '110px'
2792+
self.main_button_min_width = 110
27922793
self.small_button_min_width_str = '75px'
27932794
self.tiny_button_min_width_str = '60px'
27942795
# TODO: keep # pylint: disable=fixme
27952796
# self.main_button_min_width_px = 110
27962797
self.standard_button_min_width_px = 90
27972798
# self.small_button_min_width_px = 75
2798-
#self.tiny_button_min_width_px = 60
2799+
# self.tiny_button_min_width_px = 60
27992800
else:
28002801
# TODO: remove # pylint: disable=fixme
28012802
self.main_button_min_width_str = '100px'
@@ -5710,7 +5711,7 @@ def openThemeSettings(self, _checked:bool = False) -> None:
57105711
if reply == QMessageBox.StandardButton.Cancel:
57115712
return
57125713
if reply == QMessageBox.StandardButton.Yes:
5713-
self.loadThemeSignal.emit(action.data()[0], action.text())
5714+
self.loadThemeSignal.emit(action.data()[0], label)
57145715

57155716
@pyqtSlot(str,str)
57165717
def loadThemeFile(self, filename:str, theme_name:str) -> None:

src/includes/Themes/Catppuccin/Frappe.athm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ YTbackmarkersize=6
6464

6565
[Style]
6666
glow=0
67-
graphstyle=1
67+
graphstyle=0
6868
patheffects=0
6969

7070
[XT]

src/includes/Themes/Catppuccin/Macchiato.athm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ YTbackmarkersize=6
6464

6565
[Style]
6666
glow=0
67-
graphstyle=1
67+
graphstyle=0
6868
patheffects=0
6969

7070
[XT]

src/includes/Themes/Catppuccin/Mocha.athm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ YTbackmarkersize=6
6464

6565
[Style]
6666
glow=0
67-
graphstyle=1
67+
graphstyle=0
6868
patheffects=0
6969

7070
[XT]

wiki/ReleaseHistory.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ v4.2.2
2020
- tightened license from [GPLv3](https://www.gnu.org/licenses/gpl-3.0.html) to [AGPLv3](https://www.gnu.org/licenses/agpl-3.0.html) to prevent commercialization as headless engine
2121
- smaller builds by replacing headless Chromium engine by Rust-based [fulgur lib](https://github.com/fulgur-rs/fulgur) for HTML2PDF conversion (size reduced by ~45%)
2222
- faster app start (startup time redued by ~50%)
23-
- slightly refreshed UI
23+
- refreshed UI
2424
* FIXES
2525
- fixes faulty hash generation on files created using `Save As` causing `modified file` warnings on load ([Issue #2205](../../../issues/2205))
2626
- fixes regression causing canvas color not being applied correctly ([Issue #2212](../../../issues/2212))

0 commit comments

Comments
 (0)