Skip to content

Commit 633728f

Browse files
committed
oups
1 parent c39d636 commit 633728f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

spikeinterface_gui/layout_presets.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
+---------------+--------------+
1313
1414
If a zone has free space below it or to the right of it, it will try to use it.
15+
Stretching downwards takes precedence over stretching rightwards.
1516
E.g. suppose your layout is only non-empty in zones 1, 4, 5, 6 and 7:
1617
1718
+---------------+--------------+

spikeinterface_gui/main.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ def run_mainwindow(
3030
panel_start_server_kwargs=None,
3131
panel_window_servable=True,
3232
verbose=False,
33-
screenshot_name=""
3433
):
3534
"""
3635
Create the main window and start the QT app loop.
@@ -123,7 +122,7 @@ def run_mainwindow(
123122

124123
app = mkQApp()
125124

126-
win = QtMainWindow(controller, layout_preset=layout_preset, layout=layout, screenshot_name=screenshot_name)
125+
win = QtMainWindow(controller, layout_preset=layout_preset, layout=layout)
127126
win.setWindowTitle('SpikeInterface GUI')
128127
# Set window icon
129128
icon_file = Path(__file__).absolute().parent / 'img' / 'si.png'

0 commit comments

Comments
 (0)