refactor credential handling

This commit is contained in:
Jesse Duffield 2022-02-23 19:44:48 +11:00
parent d0805616e4
commit 46e9946854
16 changed files with 118 additions and 112 deletions

View file

@ -65,3 +65,7 @@ func (self *guiCommon) Render() {
func (self *guiCommon) OpenSearch() {
_ = self.gui.handleOpenSearch(self.gui.currentViewName())
}
func (self *guiCommon) OnUIThread(f func() error) {
self.gui.OnUIThread(f)
}