Skip to content
Snippets Groups Projects
Commit 3d46460d authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Make dark mode the default.

parent 768b44f3
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
...@@ -28,7 +28,7 @@ object EventsForm: TEventsForm ...@@ -28,7 +28,7 @@ object EventsForm: TEventsForm
Font.Color = clWhite Font.Color = clWhite
Font.Height = -12 Font.Height = -12
Font.Name = 'MS Sans Serif' Font.Name = 'MS Sans Serif'
Font.Style = [fsBold] Font.Style = []
HideScrollBars = False HideScrollBars = False
ParentFont = False ParentFont = False
PopupMenu = MainForm.LogPopupMenu PopupMenu = MainForm.LogPopupMenu
......
...@@ -148,7 +148,7 @@ object FtpForm: TFtpForm ...@@ -148,7 +148,7 @@ object FtpForm: TFtpForm
Font.Color = clWhite Font.Color = clWhite
Font.Height = -12 Font.Height = -12
Font.Name = 'MS Sans Serif' Font.Name = 'MS Sans Serif'
Font.Style = [fsBold] Font.Style = []
HideScrollBars = False HideScrollBars = False
ParentFont = False ParentFont = False
PopupMenu = MainForm.LogPopupMenu PopupMenu = MainForm.LogPopupMenu
......
...@@ -151,7 +151,7 @@ object MailForm: TMailForm ...@@ -151,7 +151,7 @@ object MailForm: TMailForm
Font.Color = clWhite Font.Color = clWhite
Font.Height = -12 Font.Height = -12
Font.Name = 'MS Sans Serif' Font.Name = 'MS Sans Serif'
Font.Style = [fsBold] Font.Style = []
HideScrollBars = False HideScrollBars = False
ParentFont = False ParentFont = False
PopupMenu = MainForm.LogPopupMenu PopupMenu = MainForm.LogPopupMenu
......
...@@ -141,9 +141,9 @@ const TColor LogLevelColor[] = { ...@@ -141,9 +141,9 @@ const TColor LogLevelColor[] = {
,clRed ,clRed
,clRed ,clRed
,clFuchsia ,clFuchsia
,clBlue ,clSkyBlue
,clBlack /* not used */ ,clBlack /* not used */
,clGreen ,clLime
}; };
link_list_t bbs_log_list; link_list_t bbs_log_list;
...@@ -972,7 +972,7 @@ __fastcall TMainForm::TMainForm(TComponent* Owner) ...@@ -972,7 +972,7 @@ __fastcall TMainForm::TMainForm(TComponent* Owner)
for(i=LOG_EMERG;i<=LOG_DEBUG;i++) { for(i=LOG_EMERG;i<=LOG_DEBUG;i++) {
LogFont[i] = new TFont; LogFont[i] = new TFont;
LogFont[i]->Color=LogLevelColor[i]; LogFont[i]->Color=LogLevelColor[i];
// if(i <= LOG_ERR) if(i <= LOG_CRIT)
LogFont[i]->Style = TFontStyles()<< fsBold; LogFont[i]->Style = TFontStyles()<< fsBold;
} }
} }
......
...@@ -132,7 +132,7 @@ object ServicesForm: TServicesForm ...@@ -132,7 +132,7 @@ object ServicesForm: TServicesForm
Font.Color = clWhite Font.Color = clWhite
Font.Height = -12 Font.Height = -12
Font.Name = 'MS Sans Serif' Font.Name = 'MS Sans Serif'
Font.Style = [fsBold] Font.Style = []
HideScrollBars = False HideScrollBars = False
ParentFont = False ParentFont = False
PopupMenu = MainForm.LogPopupMenu PopupMenu = MainForm.LogPopupMenu
......
...@@ -157,7 +157,7 @@ object TelnetForm: TTelnetForm ...@@ -157,7 +157,7 @@ object TelnetForm: TTelnetForm
Font.Color = clWhite Font.Color = clWhite
Font.Height = -12 Font.Height = -12
Font.Name = 'MS Sans Serif' Font.Name = 'MS Sans Serif'
Font.Style = [fsBold] Font.Style = []
HideScrollBars = False HideScrollBars = False
ParentFont = False ParentFont = False
PopupMenu = MainForm.LogPopupMenu PopupMenu = MainForm.LogPopupMenu
......
...@@ -153,7 +153,7 @@ object WebForm: TWebForm ...@@ -153,7 +153,7 @@ object WebForm: TWebForm
Font.Color = clWhite Font.Color = clWhite
Font.Height = -12 Font.Height = -12
Font.Name = 'MS Sans Serif' Font.Name = 'MS Sans Serif'
Font.Style = [fsBold] Font.Style = []
HideScrollBars = False HideScrollBars = False
ParentFont = False ParentFont = False
PopupMenu = MainForm.LogPopupMenu PopupMenu = MainForm.LogPopupMenu
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment