From 4da397740908ed442df3ee732d31d1e286c5bc7e Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Sat, 29 Jul 2023 16:55:49 +0200 Subject: [PATCH] Disable the control box in the update progress window Disables the close (X) button and the dropdown button embedded in the application icon. --- r5dev/sdklauncher/download_surface.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/r5dev/sdklauncher/download_surface.cpp b/r5dev/sdklauncher/download_surface.cpp index 858bc7d8..97f7577d 100644 --- a/r5dev/sdklauncher/download_surface.cpp +++ b/r5dev/sdklauncher/download_surface.cpp @@ -54,6 +54,7 @@ void CDownloadProgress::InitializeComponent() this->SetStartPosition(Forms::FormStartPosition::CenterParent); this->SetMinimizeBox(false); this->SetMaximizeBox(false); + this->SetControlBox(false); this->SetShowInTaskbar(false); this->SetBackColor(Drawing::Color(47, 54, 61));