commit-gnue
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

gnue/designer/src Instance.py


From: Jason Cater
Subject: gnue/designer/src Instance.py
Date: Fri, 20 Dec 2002 17:48:35 -0500

CVSROOT:        /cvsroot/gnue
Module name:    gnue
Changes by:     Jason Cater <address@hidden>    02/12/20 17:48:34

Modified files:
        designer/src   : Instance.py 

Log message:
        fixed the tool menu separator issue preventing them from showing

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/gnue/gnue/designer/src/Instance.py.diff?tr1=1.74&tr2=1.75&r1=text&r2=text

Patches:
Index: gnue/designer/src/Instance.py
diff -c gnue/designer/src/Instance.py:1.74 gnue/designer/src/Instance.py:1.75
*** gnue/designer/src/Instance.py:1.74  Sun Dec 15 17:22:41 2002
--- gnue/designer/src/Instance.py       Fri Dec 20 17:48:34 2002
***************
*** 223,229 ****
      cache = []
  
      for id, title, baseclass, hotkey in self._toolCache:
!       if not id: continue
        pos = RuntimeSettings.get(self.runtime_section, 'Dock-%s' % id, 
baseclass.default_dock)
  
        tl += 1 and (pos == 'topleft')
--- 223,231 ----
      cache = []
  
      for id, title, baseclass, hotkey in self._toolCache:
!       if not id: 
!         cache.append([None] * 5)
!         continue
        pos = RuntimeSettings.get(self.runtime_section, 'Dock-%s' % id, 
baseclass.default_dock)
  
        tl += 1 and (pos == 'topleft')
***************
*** 233,241 ****
  
        cache.append( (id, title, baseclass, hotkey, pos) )
  
!     panemap = {'topleft': None, 
!                'topright': None, 
!                'bottomleft': None, 
                 'bottomright': None}
  
      # If something is on the left, and on the right,
--- 235,243 ----
  
        cache.append( (id, title, baseclass, hotkey, pos) )
  
!     panemap = {'topleft': None,
!                'topright': None,
!                'bottomleft': None,
                 'bottomright': None}
  
      # If something is on the left, and on the right,



reply via email to

[Prev in Thread] Current Thread [Next in Thread]