ocarina: clean up export button

This commit is contained in:
Bryan Schumaker 2011-04-22 22:55:22 -04:00
parent a5dfe5302c
commit ad734ae8d3
1 changed files with 2 additions and 4 deletions

View File

@ -1,6 +1,7 @@
# Bryan Schumaker (2 / 20 / 2011)
import gtk
from libsaria.path import export
from libsaria import controls
SIZE = gtk.ICON_SIZE_MENU
@ -83,10 +84,7 @@ def next_button(show):
return make_button(gtk.STOCK_MEDIA_NEXT, controls.next, "Next", show)
def export_button(show):
def export_func():
from libsaria.path import export
export.export()
return make_button(gtk.STOCK_CONVERT, export_func, "Export Library", show)
return make_button(gtk.STOCK_CONVERT, export.export, "Export Library", show)
def up_button(show):
def up_func():