lib/fugit/history_tab.rb in tekkub-fugit-0.0.5 vs lib/fugit/history_tab.rb in tekkub-fugit-0.0.6

- old
+ new

@@ -5,11 +5,14 @@ class HistroyTab < Panel def initialize(parent) super @history_list = HistoryList.new(self) + @toolbar = TabToolbar.new(self, false) box = BoxSizer.new(VERTICAL) + box.add(@toolbar, 0, EXPAND) + box.add_spacer(3) box.add(@history_list, 1, EXPAND) self.set_sizer(box) end end end