Skip to content

Commit

Permalink
Merge pull request #49 from wojtryb/development
Browse files Browse the repository at this point in the history
Deploy 1.3.2
  • Loading branch information
wojtryb authored Jun 14, 2023
2 parents cce351c + 7548787 commit 1649f05
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Shortcut composer **v1.3.1**
# Shortcut composer **v1.3.2**

[![python](https://img.shields.io/badge/Python-3.8-3776AB.svg?style=flat&logo=python&logoColor=white)](https://www.python.org)
[![Code style: black](https://img.shields.io/badge/code%20style-autopep8-333333.svg)](https://pypi.org/project/autopep8/)
Expand Down
2 changes: 1 addition & 1 deletion shortcut_composer/INFO.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# SPDX-FileCopyrightText: © 2022-2023 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

__version__ = "1.3.1"
__version__ = "1.3.2"
__author__ = "Wojciech Trybus"
__license__ = "GPL-3.0-or-later"
2 changes: 1 addition & 1 deletion shortcut_composer/manual.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<body>

<h1 id="shortcut-composer-v1-3-1-">Shortcut composer <strong>v1.3.1</strong></h1>
<h1 id="shortcut-composer-v1-3-2-">Shortcut composer <strong>v1.3.2</strong></h1>
<hr>
<p><strong><code>Extension</code></strong> for painting application <strong><code>Krita</code></strong>, which allows to create custom, complex <strong><code>keyboard shortcuts</code></strong>.</p>
<p>The plugin adds new shortcuts of the following types:</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,9 @@ def reset(self, notify: bool = True) -> None:
return
# Reset is not needed when labels did not change from last reset
current_labels = [widget.label for widget in self.widget_holder]
if current_labels == self._labels:
# HACK: Labels need to be reset after config was changed, even
# when the values are still the same
if current_labels == self._labels and notify:
return

for child in self.widget_holder:
Expand Down

0 comments on commit 1649f05

Please sign in to comment.