diff --git a/mythtv/libs/libmythtv/AirPlay/mythraopconnection.cpp b/mythtv/libs/libmythtv/AirPlay/mythraopconnection.cpp
index ef0a80b..a4a4b44 100644
a
|
b
|
void MythRAOPConnection::SendNotification(bool update) |
1785 | 1785 | n->SetId(m_id); |
1786 | 1786 | n->SetParent(this); |
1787 | 1787 | n->SetDuration(5); |
| 1788 | n->SetFullScreen(gCoreContext->GetNumSetting("AirPlayFullScreen")); |
1788 | 1789 | MythUINotificationCenter::GetInstance()->Queue(*n); |
1789 | 1790 | m_firstsend = true; |
1790 | 1791 | delete n; |
diff --git a/mythtv/programs/mythfrontend/globalsettings.cpp b/mythtv/programs/mythfrontend/globalsettings.cpp
index 2b15f28..0a9a9f9 100644
a
|
b
|
static HorizontalConfigurationGroup *AirPlayPasswordSettings() |
2520 | 2520 | return hc; |
2521 | 2521 | } |
2522 | 2522 | |
| 2523 | static HostCheckBox *AirPlayFullScreen() |
| 2524 | { |
| 2525 | HostCheckBox *gc = new HostCheckBox("AirPlayFullScreen"); |
| 2526 | gc->setLabel(QObject::tr("Full screen")); |
| 2527 | gc->setValue(false); |
| 2528 | gc->setHelpText(QObject::tr("During audio playback, displays album cover " |
| 2529 | "and various media information in full screen mode")); |
| 2530 | return gc; |
| 2531 | } |
| 2532 | |
2523 | 2533 | static TransLabelSetting *AirPlayInfo() |
2524 | 2534 | { |
2525 | 2535 | TransLabelSetting *ts = new TransLabelSetting(); |
… |
… |
MainGeneralSettings::MainGeneralSettings() |
3124 | 3134 | new VerticalConfigurationGroup(false, true, false, false); |
3125 | 3135 | airplay->setLabel(QObject::tr("AirPlay Settings")); |
3126 | 3136 | airplay->addChild(AirPlayEnabled()); |
| 3137 | airplay->addChild(AirPlayFullScreen()); |
3127 | 3138 | airplay->addChild(AirPlayAudioOnly()); |
3128 | 3139 | airplay->addChild(AirPlayPasswordSettings()); |
3129 | 3140 | airplay->addChild(AirPlayInfo()); |