Skip to content

Commit

Permalink
[Update] Release candidate
Browse files Browse the repository at this point in the history
  • Loading branch information
Z4urce committed Nov 13, 2024
1 parent 4c5a700 commit b91dfdf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions BridgeApp/app_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ def add_target(self, tracker_serial, tracker_model, layout):
print(f"[GUI] Tracker {tracker_serial} is already on the list. Skipping...")
return

row = [self.tracker_row(tracker_id, tracker_serial, tracker_model)]
row = [self.tracker_row(tracker_serial, tracker_model)]
if self.window is not None:
self.window.extend_layout(self.window[KEY_LAYOUT_TRACKERS], row)
else:
Expand All @@ -205,7 +205,7 @@ def add_footer(self):
'Serial (COM port)::SERIALCOM', 'Network (Server)::NETWORK']]
self.layout.append([self.small_vertical_space()])
self.layout.append([sg.Button("Refresh Tracker List", size=18, key=KEY_BTN_REFRESH),
sg.ButtonMenu("Add External device", external_devices, key=KEY_BTN_ADD_EXTERNAL,
sg.ButtonMenu("Add External device", external_devices, key=KEY_BTN_ADD_EXTERNAL, disabled=True,
tooltip="Add an external feedback device"), ])
self.layout.append([sg.HSep()])
self.layout.append(
Expand Down
4 changes: 2 additions & 2 deletions hapticpancake.spec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ datas += tmp_ret[0]; binaries += tmp_ret[1]; hiddenimports += tmp_ret[2]


a = Analysis(
['BridgeApp/main.py'],
['BridgeApp\\main.py'],
pathex=[],
binaries=binaries,
datas=datas,
Expand Down Expand Up @@ -41,5 +41,5 @@ exe = EXE(
target_arch=None,
codesign_identity=None,
entitlements_file=None,
icon=['Images/icon.ico'],
icon=['Images\\icon.ico'],
)

0 comments on commit b91dfdf

Please sign in to comment.