diff options
author | Trent Nelson <trent.a.b.nelson@gmail.com> | 2013-11-11 18:19:39 -0500 |
---|---|---|
committer | Trent Nelson <trent.a.b.nelson@gmail.com> | 2013-11-11 18:21:07 -0500 |
commit | cbe63bc17d54ebb261d868b63515317c4fff2cec (patch) | |
tree | 00195ecc6020e707db4fc541c481ea7b048fd04d | |
parent | a87e32fe0262f01da8760f927eb10d9353091386 (diff) |
Don't confirm skin color/font setting changes.
-rw-r--r-- | xbmc/Application.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/Application.cpp b/xbmc/Application.cpp index a4e0eb3437..2a75dc9006 100644 --- a/xbmc/Application.cpp +++ b/xbmc/Application.cpp @@ -1582,7 +1582,7 @@ void CApplication::OnSettingChanged(const CSetting *setting) else { std::string builtin("ReloadSkin"); - if (!m_skinReverting) + if (settingId == "lookandfeel.skin" && !m_skinReverting) builtin += "(confirm)"; CApplicationMessenger::Get().ExecBuiltIn(builtin); } |