Skip to content

Commit

Permalink
[core] Default to correct editor choice per user with default_app val…
Browse files Browse the repository at this point in the history
…ue (#3544)
  • Loading branch information
ananya-agarwal authored Nov 22, 2023
1 parent d9cd203 commit c6ee29f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion desktop/core/src/desktop/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -1859,7 +1859,9 @@ def get_main_quick_action(self, apps):
for di in default_interpreter:
if di['name'] == DEFAULT_INTERPRETER.get():
return di
return default_interpreter[0]
return default_interpreter[0]
else:
return default_app


def _get_home(self):
Expand Down

0 comments on commit c6ee29f

Please sign in to comment.