Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/widgets.py
diff options
context:
space:
mode:
authorManuel QuiƱones <manuel.por.aca@gmail.com>2011-05-02 21:59:55 (GMT)
committer Manuel QuiƱones <manuel.por.aca@gmail.com>2011-05-02 21:59:55 (GMT)
commit3836ab94d6fbb6ba91c3ead450c60d1c1532481b (patch)
treeef970579b22054009ff214673dc2c85a18c0162c /widgets.py
parentbfad4881009bce6ab0b5b9177acc0b3ec37af985 (diff)
Brush pallete change title when stamping
Diffstat (limited to 'widgets.py')
-rw-r--r--widgets.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/widgets.py b/widgets.py
index 7f59dd2..7858841 100644
--- a/widgets.py
+++ b/widgets.py
@@ -307,12 +307,16 @@ class ButtonStrokeColor(gtk.ToolItem):
ch.hide_all()
# Hide brush options:
self.vbox_brush_options.hide_all()
+ # Change title:
+ self.set_title(_('Stamp properties'))
else:
# Show palette color widgets:
for ch in palette_children[:4]:
ch.show_all()
# Show brush options:
self.vbox_brush_options.show_all()
+ # Change title:
+ self.set_title(_('Brush properties'))
self._palette.queue_draw()
def set_stamping(self, stamping):