aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTrent Nelson <trent.a.b.nelson@gmail.com>2013-11-11 18:19:39 -0500
committerTrent Nelson <trent.a.b.nelson@gmail.com>2013-11-11 18:21:07 -0500
commitcbe63bc17d54ebb261d868b63515317c4fff2cec (patch)
tree00195ecc6020e707db4fc541c481ea7b048fd04d
parenta87e32fe0262f01da8760f927eb10d9353091386 (diff)
Don't confirm skin color/font setting changes.
-rw-r--r--xbmc/Application.cpp2
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);
}