From fd78178ddb61f06ebfe6f02039e43494196f54ab Mon Sep 17 00:00:00 2001 From: nastys <@> Date: Thu, 5 Nov 2020 00:41:04 +0100 Subject: [PATCH] [Launcher] Update Credits colour and make it read-only --- source-code/source/plugins/Launcher/ui.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/source-code/source/plugins/Launcher/ui.h b/source-code/source/plugins/Launcher/ui.h index f457bed..0f76cff 100644 --- a/source-code/source/plugins/Launcher/ui.h +++ b/source-code/source/plugins/Launcher/ui.h @@ -663,9 +663,13 @@ private: System::Windows::Forms::Panel^ panel_Custom; // // textBox1 // + this->textBox1->BackColor = System::Drawing::Color::FromArgb(static_cast(static_cast(64)), static_cast(static_cast(64)), + static_cast(static_cast(64))); + this->textBox1->ForeColor = System::Drawing::Color::White; this->textBox1->Location = System::Drawing::Point(0, 0); this->textBox1->Multiline = true; this->textBox1->Name = L"textBox1"; + this->textBox1->ReadOnly = true; this->textBox1->ScrollBars = System::Windows::Forms::ScrollBars::Both; this->textBox1->Size = System::Drawing::Size(769, 432); this->textBox1->TabIndex = 0;