Skip to content

Commit

Permalink
UI fixes and removal of copy
Browse files Browse the repository at this point in the history
  • Loading branch information
ryliewalsh committed Apr 23, 2024
1 parent 2576278 commit 2dfc6f6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions GoVizzy/GoVizzy.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "f6d32a4b0c5d4b438988d61cf1eb68d8",
"model_id": "e149679285814d049e377eb05b406363",
"version_major": 2,
"version_minor": 0
},
Expand All @@ -48,7 +48,7 @@
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "8a876746a88e4ccdbe8f1757e0e993b2",
"model_id": "ff7e06cef39449afa7e4a8442cd4d688",
"version_major": 2,
"version_minor": 0
},
Expand Down
2 changes: 1 addition & 1 deletion GoVizzy/Main.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def handle_submit_button_clicked(b):
print(f"Source file found: {source_path}")
destination_path = os.path.join(directory, fileName)
new_cube = cv.Cube()
new_cube.load_cube(destination_path)
new_cube.load_cube(source_path)
DisplayUI.show_ui()
DisplayUI.display_cube(new_cube)
DisplayUI.display_app()
Expand Down
2 changes: 1 addition & 1 deletion GoVizzy/gv_ui/gv_ui/DisplayUI.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ def display_app():

# Display the layout
button_container = VBox([newCube_button], layout=Layout(justify_content='flex-end'))
view_bar = VBox([top_container, selected_view_options, button_container],
view_bar = VBox([top_container, selected_view_options, newCube_button],
layout=Layout(flex='1'))

display_box = HBox([large_box, view_bar])
Expand Down

0 comments on commit 2dfc6f6

Please sign in to comment.