Fix QSO list display when using dark theme.

QSOs in log # and DXCC cfmd # are both set to black - when using dark
theme, this means black-on-black.  Remove setting and let it use default.
This commit is contained in:
George Baltz N3GB 2023-10-17 10:12:49 -04:00
parent 9c771b6777
commit 351c8ea18d
3 changed files with 2 additions and 2 deletions

View File

@ -31,6 +31,7 @@ Legend:
- cabrillo export (Saku, OH1KH) - cabrillo export (Saku, OH1KH)
- docker build fixes (Dawid, SQ6EMM) - docker build fixes (Dawid, SQ6EMM)
- microwave band fixes (Dawid, SQ6EMM) - microwave band fixes (Dawid, SQ6EMM)
- fix QSO list display when using dark theme (George, N3GB)
2.5.2 (2021-02-12) 2.5.2 (2021-02-12)
# some code refactoring # some code refactoring

View File

@ -9,6 +9,7 @@
<hr> <hr>
<br> <br>
<ul style="list-style: square;text-align:left; color: green;" > <ul style="list-style: square;text-align:left; color: green;" >
<li>QSO list: Fix display of #QSOs and #DXCC cfmd when using dark theme</li>
<li>eQSL download: Fixed the stuck up caused by eQSL starting to add one more empty line at the end of downloaded file</li> <li>eQSL download: Fixed the stuck up caused by eQSL starting to add one more empty line at the end of downloaded file</li>
<li>Contest: Inform remote mode 'on' when saving manual entered qso. Multimode contests like<br> <li>Contest: Inform remote mode 'on' when saving manual entered qso. Multimode contests like<br>
NAC (CW,Phone,MGM) it may happen that remote is left on when jump from FT8 to CW/Phone.<br> NAC (CW,Phone,MGM) it may happen that remote is left on when jump from FT8 to CW/Phone.<br>

View File

@ -344,7 +344,6 @@ object frmMain: TfrmMain
Anchors = [akLeft, akBottom] Anchors = [akLeft, akBottom]
BorderSpacing.Left = 10 BorderSpacing.Left = 10
Caption = '10000' Caption = '10000'
Font.Color = clBlack
Font.Style = [fsBold] Font.Style = [fsBold]
Layout = tlBottom Layout = tlBottom
ParentColor = False ParentColor = False
@ -410,7 +409,6 @@ object frmMain: TfrmMain
AutoSize = False AutoSize = False
BorderSpacing.Right = 10 BorderSpacing.Right = 10
Caption = '150' Caption = '150'
Font.Color = clBlack
Font.Style = [fsBold] Font.Style = [fsBold]
Layout = tlBottom Layout = tlBottom
ParentColor = False ParentColor = False