Ignore:
Timestamp:
07/01/12 07:58:44 (12 years ago)
Author:
István Váradi <ivaradi@…>
Branch:
default
hg-Phase:
(<MercurialRepository 1 'hg:/home/ivaradi/mlx/hg' '/'>, 'public')
Message:

Started implementing the approach callout editor

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/mlx/gui/checklist.py

    r260 r264  
    203203        selection = self._fileList.get_selection()
    204204        (model, paths) = selection.get_selected_rows()
    205         while paths:
    206             model.remove(model.get_iter(paths[0]))
    207             (model, paths) = selection.get_selected_rows()
     205
     206        iters = [model.get_iter(path) for path in paths]
     207
     208        for i in iters:
     209            if i is not None:
     210                model.remove(i)
    208211       
    209212    def _moveUpButtonClicked(self, button):
Note: See TracChangeset for help on using the changeset viewer.