From b2cbfe98d934be40f219377000feb3d30b583ed3 Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Mon, 17 Aug 2020 12:42:05 +0200 Subject: [PATCH] reverse logic of action history --- pype/tools/launcher/window.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pype/tools/launcher/window.py b/pype/tools/launcher/window.py index 70a8b0fc2e..13b4abee6e 100644 --- a/pype/tools/launcher/window.py +++ b/pype/tools/launcher/window.py @@ -401,11 +401,11 @@ class LauncherWindow(QtWidgets.QDialog): is_control_down = QtCore.Qt.ControlModifier & modifiers if is_control_down: - # User is holding control, rerun the action - self.run_action(action, session=session) - else: # Revert to that "session" location self.set_session(session) + else: + # User is holding control, rerun the action + self.run_action(action, session=session) def get_current_session(self): if self._page == 1: