lib/jldrill/views/gtk/VocabularyTableView.rb in jldrill-0.5.1.7 vs lib/jldrill/views/gtk/VocabularyTableView.rb in jldrill-0.6.0.1

- old
+ new

@@ -1,5 +1,6 @@ +# encoding: utf-8 require 'jldrill/views/gtk/widgets/ItemTableWindow' require 'jldrill/contexts/ShowAllVocabularyContext' require 'gtk2' module JLDrill::Gtk @@ -37,9 +38,13 @@ @itemTableWindow.addItem(item) end def removeItem(item) @itemTableWindow.removeItem(item) + end + + def showBusy(bool) + @itemTableWindow.showBusy(bool) end end end