Skip to content

Commit

Permalink
reverting changes in choose_app_dialog.py
Browse files Browse the repository at this point in the history
  • Loading branch information
FilipJenko committed Jun 5, 2024
1 parent f08b3b0 commit 3c38c23
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions launcher/choose_app_dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,13 @@ def __init__(self, parent: QtWidgets.QWidget=None):
file_path = Path(os.path.abspath(os.path.dirname(__file__)))
demo_image_path = file_path / "demo_card.png"
viewer_image_path = file_path / "viewer_card.png"
#demo_card = CardWidget("DepthAI Demo", demo_image_path)
demo_card = CardWidget("DepthAI Demo", demo_image_path)
viewer_card = CardWidget("DepthAI Viewer", viewer_image_path)
#hbox.addWidget(demo_card)
hbox.addWidget(demo_card)
hbox.addWidget(viewer_card)
self.setLayout(hbox)

#demo_card.clicked.connect(self.runDemo)
demo_card.clicked.connect(self.runDemo)
viewer_card.clicked.connect(self.runViewer)

# Get screen dimensions
Expand Down

0 comments on commit 3c38c23

Please sign in to comment.