Cosmetics: improved naming and actions on SessionSources (Groups and

File)
This commit is contained in:
brunoherbelin
2021-03-20 11:45:22 +01:00
parent 10ac384e7e
commit 71891292b4
5 changed files with 27 additions and 14 deletions

View File

@@ -266,8 +266,8 @@ void View::lock(Source *s, bool on)
{
s->setLocked(on);
if (on)
Action::manager().store(s->name() + std::string(" lock."));
Action::manager().store(s->name() + std::string(": lock."));
else
Action::manager().store(s->name() + std::string(" unlock."));
Action::manager().store(s->name() + std::string(": unlock."));
}