Skip to content

Commit

Permalink
Fix typo's in System Status / Display page
Browse files Browse the repository at this point in the history
No functional changes.
  • Loading branch information
kmdewaal committed Feb 10, 2023
1 parent a6152a8 commit fe865f1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mythtv/libs/libmythui/mythdisplay.cpp
Expand Up @@ -178,9 +178,9 @@ QStringList MythDisplay::GetDescription()
first = false;
auto id = QString("(%1)").arg(screen->manufacturer());
if (screen == current && !spanall)
result.append(tr("Current screen %1 %2:").arg(screen->name(), id));
result.append(tr("Current screen\t: %1 %2").arg(screen->name(), id));
else
result.append(tr("Screen %1 %2:").arg(screen->name(), id));
result.append(tr("Screen\t\t: %1 %2").arg(screen->name(), id));
result.append(tr("Size") + QString("\t\t: %1mmx%2mm")
.arg(screen->physicalSize().width()).arg(screen->physicalSize().height()));
if (screen == current)
Expand Down Expand Up @@ -1147,7 +1147,7 @@ void MythDisplay::DebugModes() const
}
}

/*! \brief Shared static initialistaion code for all MythTV GUI applications.
/*! \brief Shared static initialisation code for all MythTV GUI applications.
*
* \note This function must be called before Qt/QPA is initialised i.e. before
* any call to QApplication.
Expand Down

0 comments on commit fe865f1

Please sign in to comment.