mirror of
https://github.com/parchlinux/calamares.git
synced 2025-06-26 17:05:36 -04:00
Fix issue with changed() never being emitted on remove in GS.
This commit is contained in:
parent
b348a45834
commit
30a840ceb0
1 changed files with 2 additions and 1 deletions
|
@ -68,8 +68,9 @@ GlobalStorage::keys() const
|
|||
int
|
||||
GlobalStorage::remove( const QString& key )
|
||||
{
|
||||
return m.remove( key );
|
||||
int nItems = m.remove( key );
|
||||
emit changed();
|
||||
return nItems;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue