This commit is contained in:
Mirek Fidler 2024-11-18 14:14:26 +01:00
parent e0b8f38db0
commit b2bb5f244b
15 changed files with 39 additions and 19 deletions

View file

@ -175,10 +175,10 @@ FileTabs& FileTabs::operator<<(const FileTabs &src)
FileTabs::FileTabs() :
stackedicons(false),
greyedicons(true),
filecolor(SColorLabel),
extcolor(IsDark(SColorFace()) ? Blend(White, LtBlue) : LtBlue)
filecolor(SColorLabel)
{
static SColor se([] { return IsDark(SColorFace()) ? Blend(White, LtBlue) : LtBlue; });
extcolor = se;
}
}