Forum Archive

stash ipad error:cannot close history panel

shtek

hi, I just tried stash on my old iPadPro

I saw some toolbar icons on top of the keyboard.

after I clicked that ‘H’ icon, it showed a history panel on right top corner screen.

but then, I found no way to close this history panel,
and anywhere else except this panel is unclickable,
the only way to exit is double Home to kill this App.

then I checked this on iPhone, I found there’s a close X icon in top left corner of the history panel, which I couldn’t find in iPad.

known issue?

cvp

@shtek same on iPad mini 4. Little triangle at top of window shows that the view is presented as popover but this presentation does not exist on iPhone.

cvp

@shtek If you really need it, change in site-packages/stash/system/shui.py
History present sheet instead of popover

    def history_present(self, listsource):
        table = ui.TableView()
        listsource.font = self.BUTTON_FONT
        table.data_source = listsource
        table.delegate = listsource
        table.width = 300
        table.height = 300
        table.row_height = self.BUTTON_FONT[1] + 4
        table.present('sheet')
        table.wait_modal()
shtek

perfect. thank you