From c20a1b4a85dac198377dab04ec3f93f2f067cf1d Mon Sep 17 00:00:00 2001 From: terencehill Date: Sat, 28 Feb 2015 18:18:02 +0100 Subject: [PATCH] Allow to pause the game in the hud editor with the pause key --- qcsrc/client/hud_config.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qcsrc/client/hud_config.qc b/qcsrc/client/hud_config.qc index 764b42a9a..ad4ef2bf2 100644 --- a/qcsrc/client/hud_config.qc +++ b/qcsrc/client/hud_config.qc @@ -916,7 +916,7 @@ float HUD_Panel_InputEvent(float bInputType, float nPrimary, float nSecondary) if (highlightedPanel) HUD_Panel_EnableMenu(); } - else if(hit_con_bind) + else if(hit_con_bind || nPrimary == K_PAUSE) return false; return true; -- 2.39.2