Skip to content

Commit

Permalink
Update metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
Taiko2k committed Sep 24, 2023
1 parent 002f4a7 commit b5ce5f0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
3 changes: 1 addition & 2 deletions extra/com.github.taiko2k.tauonmb.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,9 @@

<releases>

<release version="7.6.6" date="2023-06-13">
<release version="7.6.7" date="2023-09-24">
<description>
<ul>
<li>Improvement to Spotify support</li>
<li>Various tweaks and bug fixes</li>
</ul>
</description>
Expand Down
7 changes: 7 additions & 0 deletions tauon.py
Original file line number Diff line number Diff line change
Expand Up @@ -256,17 +256,24 @@ def transfer_args_and_exit():
if "--tray" in sys.argv:
flags |= SDL_WINDOW_HIDDEN

error = False

t_window = SDL_CreateWindow(window_title,
o_x, o_y,
logical_size[0], logical_size[1],
flags) # | SDL_WINDOW_FULLSCREEN)



if maximized:
SDL_MaximizeWindow(t_window)


renderer = SDL_CreateRenderer(t_window, 0, SDL_RENDERER_ACCELERATED | SDL_RENDERER_PRESENTVSYNC)

if not renderer or not t_window:
print("ERROR CREATING WINDOW!")

SDL_SetRenderDrawBlendMode(renderer, SDL_BLENDMODE_BLEND)
SDL_SetWindowOpacity(t_window, window_opacity)

Expand Down

0 comments on commit b5ce5f0

Please sign in to comment.