Ignore:
Timestamp:
Sep 1, 2010, 6:48:53 PM (14 years ago)
Author:
mlg
Message:

Bug correction :
bug:0001837 : there is now a default translation file (in english), so the application won't crash when a translation is not found
bug:0001833 : the accents are manage when creating a new category
bug:0001832 : on a right click on the categories list, the selection is now visible
bug:0001830 : there is no bug on refreshing the categories tree

Features :
feature:001828 : exif and iptc tags are kept after resizing an image
feature:001827 : pwg.images.addChunk is now fully used : images are split into chunks before being sent

Other features :

  • The user can manage his preferences :

-The web images size
-The chunks size

  • The user can save the login informations (url, login, password) /!\ in a plain text file !
File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/jiwigo/trunk/src/main/java/fr/mael/jiwigo/ui/mainframe/CategoriesTree.java

    r6821 r6831  
    106106     */
    107107    public void setUpUi() {
     108        //begin bug:0001830
    108109        root.removeAllChildren();
    109110        createNodes(root);
    110         DefaultTreeModel model = (DefaultTreeModel) tree.getModel();
    111         model.nodeStructureChanged(root);
     111        ((DefaultTreeModel) tree.getModel()).reload();
     112        //end
     113
    112114    }
    113115
     
    183185        int selRow = tree.getRowForLocation(e.getX(), e.getY());
    184186        TreePath selPath = tree.getPathForLocation(e.getX(), e.getY());
     187        //begin bug:0001832
     188        tree.setSelectionRow(selRow);
     189        //end
    185190        if (selRow != -1) {
    186191            if (e.getButton() == 3) {
Note: See TracChangeset for help on using the changeset viewer.