mirror of
https://github.com/lcdr/utils.git
synced 2024-08-30 17:32:16 +00:00
Fix for 2 lines that were accidentally left out
This commit is contained in:
parent
742c32c5cd
commit
7131e64ee2
@ -32,6 +32,7 @@ class Viewer(Frame):
|
|||||||
self.tree.pack(fill=BOTH, expand=True)
|
self.tree.pack(fill=BOTH, expand=True)
|
||||||
|
|
||||||
scrollbar.configure(command=self.tree.yview)
|
scrollbar.configure(command=self.tree.yview)
|
||||||
|
pane.add(frame)
|
||||||
|
|
||||||
frame = Frame()
|
frame = Frame()
|
||||||
scrollbar = Scrollbar(frame)
|
scrollbar = Scrollbar(frame)
|
||||||
@ -42,6 +43,7 @@ class Viewer(Frame):
|
|||||||
self.item_inspector.pack()
|
self.item_inspector.pack()
|
||||||
|
|
||||||
scrollbar.configure(command=self.item_inspector.yview)
|
scrollbar.configure(command=self.item_inspector.yview)
|
||||||
|
pane.add(frame)
|
||||||
|
|
||||||
def find(self):
|
def find(self):
|
||||||
query = self.find_input.get().lower()
|
query = self.find_input.get().lower()
|
||||||
|
Loading…
Reference in New Issue
Block a user