mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-03 12:11:33 +01:00
* keyedit.c (keyedit_menu): Fix bug where a modified keyring loses its
modified status after a "clean" or "minimize" that doesn't need to do anything.
This commit is contained in:
parent
b77e7c9f2e
commit
d3157d6f8e
@ -1,3 +1,9 @@
|
|||||||
|
2008-09-25 David Shaw <dshaw@jabberwocky.com>
|
||||||
|
|
||||||
|
* keyedit.c (keyedit_menu): Fix bug where a modified keyring loses
|
||||||
|
its modified status after a "clean" or "minimize" that doesn't
|
||||||
|
need to do anything.
|
||||||
|
|
||||||
2008-09-25 Werner Koch <wk@g10code.com>
|
2008-09-25 Werner Koch <wk@g10code.com>
|
||||||
|
|
||||||
* parse-packet.c (parse): Remove special treatment for compressed
|
* parse-packet.c (parse): Remove special treatment for compressed
|
||||||
|
@ -2200,11 +2200,13 @@ keyedit_menu( const char *username, strlist_t locusr,
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case cmdCLEAN:
|
case cmdCLEAN:
|
||||||
redisplay=modified=menu_clean(keyblock,0);
|
if(menu_clean(keyblock,0))
|
||||||
|
redisplay=modified=1;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case cmdMINIMIZE:
|
case cmdMINIMIZE:
|
||||||
redisplay=modified=menu_clean(keyblock,1);
|
if(menu_clean(keyblock,1))
|
||||||
|
redisplay=modified=1;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case cmdQUIT:
|
case cmdQUIT:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user