workspace: fix workspace name selector returning true early (#5571)
This commit is contained in:
parent
34396f55a2
commit
582d6233c8
1 changed files with 4 additions and 4 deletions
|
|
@ -334,10 +334,10 @@ bool CWorkspace::matchesStaticSelector(const std::string& selector_) {
|
||||||
|
|
||||||
prop = prop.substr(2, prop.length() - 3);
|
prop = prop.substr(2, prop.length() - 3);
|
||||||
|
|
||||||
if (prop.starts_with("s:"))
|
if (prop.starts_with("s:") && !m_szName.starts_with(prop.substr(2)))
|
||||||
return m_szName.starts_with(prop.substr(2));
|
return false;
|
||||||
if (prop.starts_with("e:"))
|
if (prop.starts_with("e:") && !m_szName.ends_with(prop.substr(2)))
|
||||||
return m_szName.ends_with(prop.substr(2));
|
return false;
|
||||||
|
|
||||||
const auto WANTSNAMED = configStringToInt(prop);
|
const auto WANTSNAMED = configStringToInt(prop);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue