diff options
author | Jaakko Keränen <jaakko.keranen@iki.fi> | 2020-09-21 11:05:04 +0300 |
---|---|---|
committer | Jaakko Keränen <jaakko.keranen@iki.fi> | 2020-09-21 11:05:04 +0300 |
commit | bbba0d93270cc8a4ca71295cb1e0ab99e86e320d (patch) | |
tree | efba4f61cbae25173d11548d1fe21e7d038598a7 /src/gmdocument.c | |
parent | 9721a5f46bd2e3b1cc564cf615ef716658ef9c1a (diff) |
Document theme color saturation preference
Diffstat (limited to 'src/gmdocument.c')
-rw-r--r-- | src/gmdocument.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gmdocument.c b/src/gmdocument.c index 0129db64..4414b04f 100644 --- a/src/gmdocument.c +++ b/src/gmdocument.c | |||
@@ -897,7 +897,9 @@ void setThemeSeed_GmDocument(iGmDocument *d, const iBlock *seed) { | |||
897 | } | 897 | } |
898 | } | 898 | } |
899 | /* Modify overall saturation. */ | 899 | /* Modify overall saturation. */ |
900 | color.sat *= prefs->saturation; | 900 | if (!isLink_ColorId(i)) { |
901 | color.sat *= prefs->saturation; | ||
902 | } | ||
901 | setHsl_Color(i, color); | 903 | setHsl_Color(i, color); |
902 | } | 904 | } |
903 | } | 905 | } |