diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-04-30 14:13:11 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-04-30 14:47:51 +0100 |
commit | 42cd492b83cf78647ba1a7fead2860410b01c297 (patch) | |
tree | 7551c6343b7512b472a5c5eeeec5187079363dc8 /vcl/win/source | |
parent | 112e5f302e3508de6cf51e7d6ee9420df2b1b723 (diff) |
gtk3: Set tab normal/rollover/hightlight text colors
Change-Id: I4dff83941df62bcd5ec5a70a87f59e9ce17c979d
Diffstat (limited to 'vcl/win/source')
-rw-r--r-- | vcl/win/source/window/salframe.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/vcl/win/source/window/salframe.cxx b/vcl/win/source/window/salframe.cxx index 12b8f3eb1e52..a334afc792ee 100644 --- a/vcl/win/source/window/salframe.cxx +++ b/vcl/win/source/window/salframe.cxx @@ -2678,6 +2678,9 @@ void WinSalFrame::UpdateSettings( AllSettings& rSettings ) aStyleSettings.SetDialogTextColor( aStyleSettings.GetButtonTextColor() ); aStyleSettings.SetButtonTextColor( ImplWinColorToSal( GetSysColor( COLOR_BTNTEXT ) ) ); aStyleSettings.SetButtonRolloverTextColor( aStyleSettings.GetButtonTextColor() ); + aStyleSettings.SetTabTextColor( aStyleSettings.GetButtonTextColor() ); + aStyleSettings.SetTabRolloverTextColor( aStyleSettings.GetButtonTextColor() ); + aStyleSettings.SetTabHighlightTextColor( aStyleSettings.GetButtonTextColor() ); aStyleSettings.SetRadioCheckTextColor( ImplWinColorToSal( GetSysColor( COLOR_WINDOWTEXT ) ) ); aStyleSettings.SetGroupTextColor( aStyleSettings.GetRadioCheckTextColor() ); aStyleSettings.SetLabelTextColor( aStyleSettings.GetRadioCheckTextColor() ); |