commented out direction

This commit is contained in:
sanj 2010-07-03 03:48:23 +05:30
parent 4226c3912c
commit aae2d11a95

View File

@ -389,7 +389,7 @@ class TextBox(models.Model):
background_color = models.CharField(max_length=16)
border_style = models.CharField(max_length=16)
border_width = models.IntegerField()
direction = models.CharField(max_length=8)
# direction = models.CharField(max_length=8)
# line_height = models.IntegerField(blank=True, null=True)
# letter_spacing = models.IntegerField(blank=True, null=True)
# word_spacing = models.IntegerField(blank=True, null=True)
@ -423,7 +423,7 @@ class TextBox(models.Model):
'left': addPx(self.left),
'z-index': self.z_index,
'opacity': self.opacity,
'direction': self.direction,
# 'direction': self.direction,
'border-style': self.border_style,
'border-width': addPx(self.border_width),
'border-color': self.border_color,