Correct typo
This commit is contained in:
parent
f75c0a2b97
commit
00a0e990fd
@ -162,7 +162,7 @@ void PlaylistTabBar::Close() {
|
|||||||
QSettings s;
|
QSettings s;
|
||||||
s.beginGroup(kSettingsGroup);
|
s.beginGroup(kSettingsGroup);
|
||||||
|
|
||||||
const bool ask_for_delete = s.value("warm_close_playlist", true).toBool();
|
const bool ask_for_delete = s.value("warn_close_playlist", true).toBool();
|
||||||
|
|
||||||
if (ask_for_delete && !manager_->IsPlaylistFavorite(playlist_id)) {
|
if (ask_for_delete && !manager_->IsPlaylistFavorite(playlist_id)) {
|
||||||
if (QMessageBox::question(this,
|
if (QMessageBox::question(this,
|
||||||
|
@ -127,7 +127,7 @@ void BehaviourSettingsPage::Load() {
|
|||||||
s.endGroup();
|
s.endGroup();
|
||||||
|
|
||||||
s.beginGroup(PlaylistTabBar::kSettingsGroup);
|
s.beginGroup(PlaylistTabBar::kSettingsGroup);
|
||||||
ui_->b_warm_close_playlist_->setChecked(s.value("warm_close_playlist", true).toBool());
|
ui_->b_warn_close_playlist_->setChecked(s.value("warn_close_playlist", true).toBool());
|
||||||
s.endGroup();
|
s.endGroup();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -166,7 +166,7 @@ void BehaviourSettingsPage::Save() {
|
|||||||
s.endGroup();
|
s.endGroup();
|
||||||
|
|
||||||
s.beginGroup(PlaylistTabBar::kSettingsGroup);
|
s.beginGroup(PlaylistTabBar::kSettingsGroup);
|
||||||
s.setValue("warm_close_playlist", ui_->b_warm_close_playlist_->isChecked());
|
s.setValue("warn_close_playlist", ui_->b_warn_close_playlist_->isChecked());
|
||||||
s.endGroup();
|
s.endGroup();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -39,9 +39,9 @@
|
|||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QCheckBox" name="b_warm_close_playlist_">
|
<widget class="QCheckBox" name="b_warn_close_playlist_">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Warm me when closing a playlist tab</string>
|
<string>Warn me when closing a playlist tab</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user