X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=blobdiff_plain;f=qcsrc%2Fclient%2Fview.qc;h=701eb9f1e7419bb5328bcdd6e0651bd94b86e1c0;hp=b68270990a5868e5896683f8ab8eb21bed7df2f3;hb=6cc2d1aa115907d16ae84fb07c3fe6c3329cd9b5;hpb=cc829528986909cb96fe28b65b6d447f27235b65 diff --git a/qcsrc/client/view.qc b/qcsrc/client/view.qc index b68270990a..701eb9f1e7 100644 --- a/qcsrc/client/view.qc +++ b/qcsrc/client/view.qc @@ -1192,7 +1192,7 @@ void CSQC_UpdateView(float w, float h) } // do lockview after event chase camera so that it still applies whenever necessary. - if(autocvar_cl_lockview || (!autocvar_hud_cursormode && (autocvar__hud_configure && spectatee_status <= 0 || intermission > 1))) + if(autocvar_cl_lockview || (!autocvar_hud_cursormode && (autocvar__hud_configure && spectatee_status <= 0 || intermission > 1 || QuickMenu_IsOpened()))) { setproperty(VF_ORIGIN, freeze_org); setproperty(VF_ANGLES, freeze_ang); @@ -1855,6 +1855,8 @@ void CSQC_UpdateView(float w, float h) HUD_Panel_Mouse(); else if ( HUD_MinigameMenu_IsOpened() || minigame_isactive() ) HUD_Minigame_Mouse(); + else if(QuickMenu_IsOpened()) + QuickMenu_Mouse(); else HUD_Radar_Mouse();