Skip to content

Commit

Permalink
Merge pull request #11 from davidhozic/develop
Browse files Browse the repository at this point in the history
Merge develop
  • Loading branch information
davidhozic authored Aug 15, 2024
2 parents 2465b1a + aa8419a commit 0a9a9dd
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ Glossary
Releases
---------------------

v1.3.1
==================
- Fixed *_tkinter.TclError: grab failed: window not viewable* error when ``pop_up`` was set to ``True``.


v1.3.0
==================
- Added ``message`` parameter to :func:`~tk_async_execute.utils.async_execute()` and
Expand Down
2 changes: 1 addition & 1 deletion tk_async_execute/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
"""
VERSION = "1.3.0"
VERSION = "1.3.1"

from .utils import *
from .widget import ExecutingAsyncWindow
1 change: 1 addition & 0 deletions tk_async_execute/widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ def __init__(
self.withdraw()

if pop_up:
self.wait_visibility()
self.grab_set()

self.awaitable = coro
Expand Down

0 comments on commit 0a9a9dd

Please sign in to comment.