|
From: <cn...@us...> - 2020-01-11 05:27:04
|
Revision: 1002
http://sourceforge.net/p/seq/svn/1002
Author: cn187
Date: 2020-01-11 05:27:02 +0000 (Sat, 11 Jan 2020)
Log Message:
-----------
Always update last find filter, even if new one is empty
This fixes the issue where nothing would highlight if you re-entered a
filter you had just used and cleared.
Modified Paths:
--------------
showeq/branches/pre_6_0_beta/src/map.cpp
Modified: showeq/branches/pre_6_0_beta/src/map.cpp
===================================================================
--- showeq/branches/pre_6_0_beta/src/map.cpp 2020-01-03 21:19:34 UTC (rev 1001)
+++ showeq/branches/pre_6_0_beta/src/map.cpp 2020-01-11 05:27:02 UTC (rev 1002)
@@ -4817,12 +4817,12 @@
needCommit = true;
}
+ m_lastFilter = str;
+
if(str.isEmpty())
regexpok(0);
else
{
- m_lastFilter = str;
-
bool valid = m_filterMgr->runtimeFilterAddFilter(m_runtimeFilterFlag, str);
needCommit = true;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|