Correct typo
This commit is contained in:
parent
f75c0a2b97
commit
00a0e990fd
@ -162,7 +162,7 @@ void PlaylistTabBar::Close() {
|
||||
QSettings s;
|
||||
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 (QMessageBox::question(this,
|
||||
|
@ -127,7 +127,7 @@ void BehaviourSettingsPage::Load() {
|
||||
s.endGroup();
|
||||
|
||||
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();
|
||||
}
|
||||
|
||||
@ -166,7 +166,7 @@ void BehaviourSettingsPage::Save() {
|
||||
s.endGroup();
|
||||
|
||||
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();
|
||||
}
|
||||
|
||||
|
@ -39,9 +39,9 @@
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QCheckBox" name="b_warm_close_playlist_">
|
||||
<widget class="QCheckBox" name="b_warn_close_playlist_">
|
||||
<property name="text">
|
||||
<string>Warm me when closing a playlist tab</string>
|
||||
<string>Warn me when closing a playlist tab</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
Loading…
x
Reference in New Issue
Block a user