Skip to content

Commit

Permalink
Vl 50 generate executable for win32 (#51)
Browse files Browse the repository at this point in the history
* feat: shorten textline component height

* feat:: generated executables for win32

---------

Co-authored-by: Hanxiong Shi <[email protected]>
  • Loading branch information
shihanxiong and Hanxiong Shi authored Apr 6, 2023
1 parent 0088ad1 commit cc5ed85
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,10 @@ def app_configure(self):
if platform == "win32":
set_dpi_awareness()
# self.resizable(False, False) # TODO: render display in scale for non-4k monitors
self.window_height = 1200
self.window_height = 980
self.window_width = 1200
elif platform == "darwin":
self.window_height = 950
self.window_height = 800
self.window_width = 1000
else:
self.window_height = 1000
Expand Down
Binary file modified src/dist/win32_video_loom_1_2_0.exe
Binary file not shown.
Binary file modified src/dist/win32_video_loom_1_2_0.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion src/timeline_frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def __init__(self, container, **args):
timeline_label.grid(row=0)

self.timeline_text = tk.Text(
self, height=22, font=self.master.default_font)
self, height=14, font=self.master.default_font)
self.timeline_text.grid(row=1, column=0, sticky="EW")

text_scroll = ttk.Scrollbar(
Expand Down

0 comments on commit cc5ed85

Please sign in to comment.