Changeset 132

Show
Ignore:
Timestamp:
04/04/04 23:04:17 (4 years ago)
Author:
ug
Message:

clean up after custom menus bug fix

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • 05/devel/kombilo.py

    r131 r132  
    16021602    def c_delete(self): 
    16031603 
    1604         print self.customMenuList 
    1605  
    16061604        if not self.current: return 
    16071605        index = int(self.current[0]) 
     
    16171615        del self.correspEntry[index:index+n] 
    16181616         
    1619 ##         for i in range(n): 
    1620 ##             self.list.delete(index) 
    1621  
    16221617        self.correspEntry = [[0, '', '', None, None]] 
    16231618        self.list.delete(1,END) 
    16241619        self.c_buildList(self.customMenuList, 1) 
    1625  
    1626  
    1627  
    1628          
    1629 ##         i = index 
    1630 ##         while i < len(self.correspEntry) and self.correspEntry[i][0] == 2: # FIXME 
    1631 ##             self.correspEntry[i][4] -= 1 
    1632 ##             i += 1 
    16331620             
    16341621        if self.list.list.index(END) > index: 
     
    16371624            self.list.list.select_set(END) 
    16381625        self.current = None 
    1639          
    1640         print self.customMenuList 
     1626 
    16411627 
    16421628