-----BEGIN PGP SIGNED MESSAGE-----
Hash: RIPEMD160
Greetings all,
I don't know what the proper venue for submitting patches is (I don't
think I'm allowed to do CVS commits :), so I'm attaching one. Please
rebuke me appropriately if this is not the correct forum for this.
The patch is trivial: it adds "sorting" messages when a document is
deleted right from the library (and the list gets updated) and when
category is changed. Those were bugging the crap out of me - the screen
does not give any feedback that something is happening. Also, fixed a
small documentation typo.
Please see attached diff (against today's CVS - 4/26/06 around 9 CST).
Thanks very much,
Eugene
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2.2 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org
iD8DBQFEUCsHmjBKecAKia8RAyBNAJ4tb8AfopjSY9Hl0xe8UpaUykNfNgCgqyqF
MnSHbVCm+0DDGiXxyF+erpw=
=MMrc
-----END PGP SIGNATURE-----
277a278
> inline static void DoIndexUpdate( void ) LIBRARYFORM_SECTION;
2171c2172,2173
< UpdateIndexList();
---
> //UpdateIndexList();
> DoIndexUpdate();
2291c2293,2294
< UpdateIndexList();
---
> //UpdateIndexList();
> DoIndexUpdate();
2461c2464,2465
< UpdateIndexList();
---
> //UpdateIndexList();
> DoIndexUpdate();
2976c2980,2981
< UpdateIndexList();
---
> //UpdateIndexList();
> DoIndexUpdate();
3096,3098c3101,3104
< ShowSortMessage();
< UpdateIndexList();
< HideMessage();
---
> //ShowSortMessage();
> //UpdateIndexList();
> //HideMessage();
> DoIndexUpdate();
3163c3169
< /* toggle show date column */
---
> /* toggle show size column */
3253c3259
< void LibraryHighlightRow( Int16 row )
---
> inline void LibraryHighlightRow( Int16 row )
3291,3293c3297,3300
< ShowSortMessage();
< UpdateIndexList();
< HideMessage();
---
> //ShowSortMessage();
> //UpdateIndexList();
> //HideMessage();
> DoIndexUpdate();
3296a3304,3309
> inline static void DoIndexUpdate( void )
> {
> ShowSortMessage();
> UpdateIndexList();
> HideMessage();
> }