From aae2d11a95467460cbf2250e2e6268b6de5a7b88 Mon Sep 17 00:00:00 2001 From: sanj Date: Sat, 3 Jul 2010 03:48:23 +0530 Subject: [PATCH] commented out direction --- edgware/editor/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/edgware/editor/models.py b/edgware/editor/models.py index dcf001d..774d9e0 100644 --- a/edgware/editor/models.py +++ b/edgware/editor/models.py @@ -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,