Skip to content

Commit

Permalink
Fix duplication of "special:" in special workspace name
Browse files Browse the repository at this point in the history
	modified:   src/desktop/Workspace.cpp
  • Loading branch information
Agent_00Ming committed Apr 24, 2024
1 parent 34413d1 commit 24e7908
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/desktop/Workspace.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ void CWorkspace::rememberPrevWorkspace(const PHLWORKSPACE& prev) {

std::string CWorkspace::getConfigName() {
if (m_bIsSpecialWorkspace) {
return "special:" + m_szName;
return m_szName;
}

if (m_iID > 0)
Expand Down

0 comments on commit 24e7908

Please sign in to comment.