whiteboard plugin. Ability to save images

This commit is contained in:
Denis Fomin 2010-11-02 15:36:29 +03:00
parent c999acc9cb
commit 045a74c7b4
1 changed files with 3 additions and 3 deletions

View File

@ -108,7 +108,7 @@ class Whiteboard(object):
self.image.clear_canvas()
def on_export_button_clicked(self, widget):
self.image.export_svg(filename)
SvgChooserDialog(self.image.export_svg)
def on_fg_color_button_color_set(self, widget):
self.color = str(self.fg_color_select_button.get_color())
@ -258,8 +258,8 @@ class SvgChooserDialog(FileChooserDialog):
path_to_clientcert_file = \
gtkgui_helpers.decode_filechooser_file_paths(
(path_to_clientcert_file,))[0]
if os.path.exists(path_to_clientcert_file):
callback(widget, path_to_clientcert_file)
widget.destroy()
callback(path_to_clientcert_file)
FileChooserDialog.__init__(self,
title_text=_('Save Image as...'),