diff options
Diffstat (limited to 'src/gui/widgets/browserbox.cpp')
-rw-r--r-- | src/gui/widgets/browserbox.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/gui/widgets/browserbox.cpp b/src/gui/widgets/browserbox.cpp index 1551ae81d..26d446060 100644 --- a/src/gui/widgets/browserbox.cpp +++ b/src/gui/widgets/browserbox.cpp @@ -536,8 +536,11 @@ int BrowserBox::calcHeight() const signed char c = row.at(start + 2); bool valid; - const gcn::Color col[2] = {getThemeCharColor(c, valid), - getThemeCharColor(c | 0x80, valid)}; + const gcn::Color col[2] = + { + getThemeCharColor(c, valid), + getThemeCharColor(c | 0x80, valid) + }; if (c == '>') { |