Skip to content

Commit

Permalink
Adjust height of RHS pane.
Browse files Browse the repository at this point in the history
  • Loading branch information
amahabal committed Mar 8, 2017
1 parent ec7afb7 commit 48c37cd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions farg/core/history.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ def ClickAction(me, my_hid):
def _AddSummaryFrame(self):
#####CREATE SUMMARY FRAME#####
summaryFrame = ttk.Frame(self.root, name='summary')
self.summaryText = Text(summaryFrame)
self.summaryText = Text(summaryFrame, height=55)
self.summaryText.tag_configure(
'obj_type',
foreground='blue',
Expand All @@ -206,13 +206,13 @@ def _AddSummaryFrame(self):

def _AddCountsFrame(self):
countsFrame = ttk.Frame(self.root, name='counts')
self.countsText = Text(countsFrame)
self.countsText = Text(countsFrame, height=55)
self.countsText.pack()
self.historyNB.add(countsFrame, text='Counters', underline=0, padding=2)

def _AddObjectDetailsFrame(self):
detailsFrame = ttk.Frame(self.root, name='details')
self.detailsText = Text(detailsFrame, height=50)
self.detailsText = Text(detailsFrame, height=55)
self.detailsText.pack()
self.historyNB.add(
detailsFrame, text='Object Details', underline=0, padding=2)
Expand Down

0 comments on commit 48c37cd

Please sign in to comment.