Skip to content

Commit 98c0e7d

Browse files
committed
fix: Fix config and new 0.9.2 tag
It uses the value as default value to compare, and then get no change if set value at first time. Log: Fix config not change at first time. Bug: https://pms.uniontech.com/bug-view-275517.html
1 parent fc0ae18 commit 98c0e7d

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

debian/changelog

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
dde-cooperation (0.9.2) unstable; urgency=medium
2+
3+
* v0.9.2 version update.
4+
* fix some issues.
5+
6+
-- re2zero <[email protected]> Tue, 08 Oct 2024 15:08:16 +0800
7+
18
dde-cooperation (0.9.1) unstable; urgency=medium
29

310
* v0.9.1 version update.
@@ -10,7 +17,7 @@ dde-cooperation (0.9.0) unstable; urgency=medium
1017
* v0.9.0 version update.
1118
* added a new communication method that is compatible with previous versions.
1219

13-
-- liujinchang <[email protected]> Aug, 28 Wed 2024 09:51:44 +0800
20+
-- liujinchang <[email protected]> Wed, 28 Aug 2024 09:51:44 +0800
1421

1522
dde-cooperation (0.8.0) unstable; urgency=medium
1623

src/configs/settings/settings.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -451,7 +451,7 @@ bool Settings::setValueNoNotify(const QString &group, const QString &key, const
451451

452452
changed = true;
453453
} else {
454-
changed = this->value(group, key, value) != value;
454+
changed = this->value(group, key) != value;
455455
}
456456

457457
d->writableData.setValue(group, key, value);

0 commit comments

Comments
 (0)