Skip to content

Commit 0380d14

Browse files
committed
0.5.2
1 parent 80f3cdb commit 0380d14

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

assetsBrowser.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -172,9 +172,6 @@ def Init(self, folder=False):
172172

173173
print("Project open")
174174

175-
lbl_result = tk.Label(self.sdk.root, text="Tools", wraplength=400, background="#3e4637",fg='white')
176-
lbl_result.pack()
177-
178175
self.texture = Texture(self.sdk)
179176
self.model = Model(self.sdk)
180177
self.map = Map(self.sdk)
@@ -472,7 +469,7 @@ def open_file_explorer(self):
472469
repo_name = "SourceSDK-"
473470

474471
# Replace this with the version of your local software
475-
local_version = "0.5.1"
472+
local_version = "0.5.2"
476473

477474
github_version = test.get_latest_release_version(repo_owner, repo_name)
478475

@@ -525,5 +522,8 @@ def open_file_explorer(self):
525522
test.sdk.root.bind("<Control-n>", test.handle_shortcut)
526523
test.sdk.root.bind("<Control-o>", test.handle_shortcut)
527524

525+
lbl_result = tk.Label(test.sdk.root, text="Tools", wraplength=400, background="#3e4637",fg='white')
526+
lbl_result.pack()
527+
528528
# Start the GUI event loop
529529
test.sdk.root.mainloop()

0 commit comments

Comments
 (0)