summaryrefslogtreecommitdiff
path: root/plugins/CrashDumper/src
diff options
context:
space:
mode:
authorMataes <mataes2007@gmail.com>2019-01-09 21:21:59 +0300
committerMataes <mataes2007@gmail.com>2019-01-09 21:22:53 +0300
commit926c938556ca547fa1333c712bd2a5fcae7a68c3 (patch)
treea709a7a04c3600d02a3991cec5d8d5b205f856eb /plugins/CrashDumper/src
parentac9a3bc8834ceab43c9948c70cd0454460bbbdcd (diff)
CrashDumper: 2nd attempt fixes #1736 (CrashDumper: "Use classic dates" options should not depend on "Generate crash reports")
Diffstat (limited to 'plugins/CrashDumper/src')
-rw-r--r--plugins/CrashDumper/src/ui.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/plugins/CrashDumper/src/ui.cpp b/plugins/CrashDumper/src/ui.cpp
index 801e2509d9..769cfd476f 100644
--- a/plugins/CrashDumper/src/ui.cpp
+++ b/plugins/CrashDumper/src/ui.cpp
@@ -221,10 +221,8 @@ public:
m_chkClassicDates.SetState(clsdates);
m_chkRepSubfolder.SetState(dtsubfldr);
m_chkCatchCrashes.SetState(catchcrashes);
- if (!catchcrashes) {
- m_chkClassicDates.Disable();
+ if (!catchcrashes)
m_chkRepSubfolder.Disable();
- }
if (needrestart)
m_lblRestart.Show();
return true;