Skip to content

Commit

Permalink
formattign
Browse files Browse the repository at this point in the history
  • Loading branch information
rchl committed Jan 29, 2024
1 parent 3a1a197 commit 5384402
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugin/references.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 5384402

Please sign in to comment.