summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/dropshortcut.cpp7
-rw-r--r--src/dropshortcut.h2
2 files changed, 5 insertions, 4 deletions
diff --git a/src/dropshortcut.cpp b/src/dropshortcut.cpp
index 4e0718d16..1211c228d 100644
--- a/src/dropshortcut.cpp
+++ b/src/dropshortcut.cpp
@@ -43,7 +43,7 @@ DropShortcut::DropShortcut() :
mItemColorSelected(1),
mLastDropIndex(0)
{
- clear();
+ clear(false);
load();
}
@@ -224,12 +224,13 @@ void DropShortcut::setItem(const int index)
save();
}
-void DropShortcut::clear()
+void DropShortcut::clear(bool isSave)
{
for (int i = 0; i < DROP_SHORTCUT_ITEMS; i++)
{
mItems[i] = -1;
mItemColors[i] = 1;
}
- save();
+ if (isSave)
+ save();
}
diff --git a/src/dropshortcut.h b/src/dropshortcut.h
index 7f3ec46eb..3026ee9f5 100644
--- a/src/dropshortcut.h
+++ b/src/dropshortcut.h
@@ -146,7 +146,7 @@ class DropShortcut final
*/
void dropItems(const int cnt = 1);
- void clear();
+ void clear(bool isSave = true);
private: