From: Severin Meyer Date: Mon, 9 Feb 2015 19:16:29 +0000 (+0100) Subject: Center onlyowned weapon panel if the panel bounds reach across the whole screen X-Git-Tag: xonotic-v0.8.1~117^2~1 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=8f0b9c718636197d5116a064a4e61da7aa2bf923;p=xonotic%2Fxonotic-data.pk3dir.git Center onlyowned weapon panel if the panel bounds reach across the whole screen --- diff --git a/qcsrc/client/hud.qc b/qcsrc/client/hud.qc index 86dfadbaf..105cce5f2 100644 --- a/qcsrc/client/hud.qc +++ b/qcsrc/client/hud.qc @@ -563,16 +563,24 @@ void HUD_Weapons(void) // center the resized panel, or snap it to the screen edge when close enough if(panel_pos.x > vid_conwidth * 0.001) + { if(panel_pos.x + old_panel_size.x > vid_conwidth * 0.999) panel_pos.x += old_panel_size.x - panel_size.x; else panel_pos.x += (old_panel_size.x - panel_size.x) / 2; + } + else if(old_panel_size.x > vid_conwidth * 0.999) + panel_pos.x += (old_panel_size.x - panel_size.x) / 2; if(panel_pos.y > vid_conheight * 0.001) + { if(panel_pos.y + old_panel_size.y > vid_conheight * 0.999) panel_pos.y += old_panel_size.y - panel_size.y; else panel_pos.y += (old_panel_size.y - panel_size.y) / 2; + } + else if(old_panel_size.y > vid_conheight * 0.999) + panel_pos.y += (old_panel_size.y - panel_size.y) / 2; } else weapon_count = WEP_COUNT;