mirror of
https://github.com/DYefremov/DemonEditor.git
synced 2026-07-16 03:03:34 +02:00
fix single import for empty bouquets list
This commit is contained in:
@@ -1347,7 +1347,7 @@ class Application(Gtk.Application):
|
||||
self.append_bouquet(bouquet, itr)
|
||||
else:
|
||||
p_itr = model.iter_parent(itr)
|
||||
self.append_bouquet(bouquet, p_itr)
|
||||
self.append_bouquet(bouquet, p_itr) if p_itr else self.append_bouquet(bouquet, itr)
|
||||
|
||||
def on_import_bouquets(self, item):
|
||||
response = show_dialog(DialogType.CHOOSER, self._main_window, options=self._options.get(self._profile))
|
||||
|
||||
Reference in New Issue
Block a user