minor swipe fixes

This commit is contained in:
vaxerski
2022-09-17 15:05:12 +01:00
parent 151e013241
commit a72a39ebd5
3 changed files with 10 additions and 2 deletions

View File

@@ -221,6 +221,9 @@ int getWorkspaceIDFromString(const std::string& in, std::string& outName) {
int highestID = -99999;
for (auto& w : g_pCompositor->m_vWorkspaces) {
if (w->m_iID == SPECIAL_WORKSPACE_ID)
continue;
if (w->m_iID < lowestID)
lowestID = w->m_iID;