searching is now case insensitive

This commit is contained in:
fourtf
2018-01-07 00:05:32 +01:00
parent 6fec6514fa
commit a32d1c063c
3 changed files with 5 additions and 2 deletions
+1 -1
View File
@@ -226,7 +226,7 @@ void Scrollbar::paintEvent(QPaintEvent *)
int w = this->width();
float y = 0;
float dY = (float)(this->height() + MIN_THUMB_HEIGHT) / (float)snapshotLength;
float dY = (float)(this->height()) / (float)snapshotLength;
int highlightHeight = std::ceil(dY);
for (int i = 0; i < snapshotLength; i++) {