From 53844021fde85a7e613373818baf48dc4f8ba694 Mon Sep 17 00:00:00 2001 From: Rafal Chlodnicki Date: Mon, 29 Jan 2024 21:25:28 +0100 Subject: [PATCH] formattign --- plugin/references.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/references.py b/plugin/references.py index 0cc6e8d93..8a502eda3 100644 --- a/plugin/references.py +++ b/plugin/references.py @@ -140,9 +140,9 @@ def _handle_response( return modifier_keys = (event or {}).get('modifier_keys', {}) show_in_quick_panel = show_in == 'quick_panel' or show_in is None and userprefs().show_references_in_quick_panel - if modifier_keys.get('primary') and show_in_quick_panel and side_by_side is False: - side_by_side = True if show_in_quick_panel: + if modifier_keys.get('primary') and side_by_side is False: + side_by_side = True self._show_references_in_quick_panel(word, session, response, side_by_side, force_group, group, position) else: self._show_references_in_output_panel(word, session, response)