Skip to content

Commit

Permalink
fix ime crash
Browse files Browse the repository at this point in the history
  • Loading branch information
Taiko2k committed Aug 30, 2024
1 parent d31ad01 commit 65b8cc1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@

Changelog----------------------------

v7.8.3

- Fix crash when using IME

v7.8.2

- Fixed M4A and AIFF not importing bug introduced by 7.8.1
Expand Down
2 changes: 1 addition & 1 deletion extra/com.github.taiko2k.tauonmb.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
<releases>


<release version="7.8.2" date="2024-08-29">
<release version="7.8.3" date="2024-08-30">
<description>
<ul>
<li>Improved Pipewire support</li>
Expand Down
2 changes: 1 addition & 1 deletion t_modules/t_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -10900,7 +10900,7 @@ def link_activate(x, y, link_pa, click=None):


def pixel_to_logical(x):
return round((x / window_size[0]) * logical_size)
return round((x / window_size[0]) * logical_size[0])

class TextBox2:
cursor = True
Expand Down

0 comments on commit 65b8cc1

Please sign in to comment.