diff options
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/browserbox.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gui/browserbox.cpp b/src/gui/browserbox.cpp index 185777d0..a2613389 100644 --- a/src/gui/browserbox.cpp +++ b/src/gui/browserbox.cpp @@ -380,8 +380,7 @@ BrowserBox::draw(gcn::Graphics *graphics) } // Check for line separators in format "---" - if ((j <= 3) && (row.at(j) == '-') && (row.at(j + 1) == '-') && - (row.at(j + 2) == '-')) + if (row == "---") { for (x = 0; x < getWidth(); x++) { |