Skip to content

Commit

Permalink
Merge pull request #4525 from ronso0/skin-control-info
Browse files Browse the repository at this point in the history
Use info not warning for skin COs
  • Loading branch information
daschuer committed Nov 16, 2021
2 parents dea9f71 + 90094d0 commit bef04ac
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/skin/legacy/legacyskinparser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,8 @@ ControlObject* LegacySkinParser::controlFromConfigKey(

// TODO(rryan): Make this configurable by the skin.
if (CmdlineArgs::Instance().getDeveloper()) {
qWarning() << "Requested control does not exist:"
<< QString("%1,%2").arg(key.group, key.item)
<< "Creating it.";
qInfo() << "Creating skin control object:"
<< QString("%1,%2").arg(key.group, key.item);
}
// Since the usual behavior here is to create a skin-defined push
// button, actually make it a push button and set it to toggle.
Expand Down

0 comments on commit bef04ac

Please sign in to comment.