commit-gnue
[Top][All Lists]
Advanced

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

gnue/gnuef/src/GFObjects GFEntry.py


From: James Thompson
Subject: gnue/gnuef/src/GFObjects GFEntry.py
Date: Mon, 09 Jul 2001 21:14:57 -0700

CVSROOT:        /cvs
Module name:    gnue
Changes by:     James Thompson <address@hidden> 01/07/09 21:14:57

Modified files:
        gnuef/src/GFObjects: GFEntry.py 

Log message:
        Fix - The default value for visibleCount was preventing the rows block 
attrib from working

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/gnue/gnuef/src/GFObjects/GFEntry.py.diff?cvsroot=OldCVS&tr1=1.1&tr2=1.2&r1=text&r2=text

Patches:
Index: gnue/gnuef/src/GFObjects/GFEntry.py
diff -u gnue/gnuef/src/GFObjects/GFEntry.py:1.1 
gnue/gnuef/src/GFObjects/GFEntry.py:1.2
--- gnue/gnuef/src/GFObjects/GFEntry.py:1.1     Fri Jun 29 15:55:58 2001
+++ gnue/gnuef/src/GFObjects/GFEntry.py Mon Jul  9 21:14:57 2001
@@ -71,11 +71,11 @@
       datasourceName,self.fieldName = string.split(self.foreign_key,'.')
       self.datasource = self._block._form._datasourceDictionary[datasourceName]
 
-    if not hasattr(self,'visibleCount'):
-      if hasattr(self._block,'rows'):
-        self.visibleCount = self._block.rows
-      if hasattr(self._block,'rowSpacer'):
-        self.gap = self._block.rowSpacer
+    #if not hasattr(self,'visibleCount'):
+    if hasattr(self._block,'rows'):
+      self.visibleCount = self._block.rows
+    if hasattr(self._block,'rowSpacer'):
+      self.gap = self._block.rowSpacer
 
     #following check does not work if move it to GFEntry.__init__ (ra3vat) 
     if hasattr(self, 'style'):



reply via email to

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