Removed debug print statements.
This commit is contained in:
parent
21edeecdc3
commit
a9947daf14
|
@ -67,16 +67,12 @@ class FluentApp:
|
||||||
|
|
||||||
window = self.widget_tree.get_widget('plot_toolbar_dock')
|
window = self.widget_tree.get_widget('plot_toolbar_dock')
|
||||||
if self._plot_toolbar:
|
if self._plot_toolbar:
|
||||||
print "removing", self._plot_toolbar
|
|
||||||
window.remove(self._plot_toolbar)
|
window.remove(self._plot_toolbar)
|
||||||
|
|
||||||
self._plot_toolbar = view.get_toolbar()
|
self._plot_toolbar = view.get_toolbar()
|
||||||
if self._plot_toolbar:
|
if self._plot_toolbar:
|
||||||
print "adding", self._plot_toolbar
|
|
||||||
window.add(self._plot_toolbar)
|
window.add(self._plot_toolbar)
|
||||||
|
|
||||||
print "window contents:", window.get_children()
|
|
||||||
|
|
||||||
def create_small_view(self, str1, str2, int1, int2):
|
def create_small_view(self, str1, str2, int1, int2):
|
||||||
self.small_view = plots.SmallView()
|
self.small_view = plots.SmallView()
|
||||||
self.small_view.show()
|
self.small_view.show()
|
||||||
|
|
Reference in New Issue