Search: Use wxDataViewCtrl instead of wxListBox.

Added icons as a markers of settings type
For slDlg settings layout mode added process of "Ctrl+F" shortcut
This commit is contained in:
YuSanka 2020-05-14 08:48:17 +02:00
parent 9487676680
commit 5c1d73682d
6 changed files with 240 additions and 85 deletions

View file

@ -53,7 +53,7 @@ void Tab::Highlighter::init(BlinkingBitmap* bmp)
if (!bmp)
return;
timer.Start(100, false);
timer.Start(300, false);
bbmp = bmp;
bbmp->activate();
@ -74,7 +74,7 @@ void Tab::Highlighter::blink()
return;
bbmp->blink();
if ((++blink_counter) == 29)
if ((++blink_counter) == 11)
invalidate();
}