Skip to content

Commit

Permalink
fix graph position.
Browse files Browse the repository at this point in the history
  • Loading branch information
mkassner committed Aug 30, 2017
1 parent 524660d commit 2a74681
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pupil_src/shared_modules/dialation_history.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@ def __init__(self, g_pool):

def init_gui(self):
eye0_graph = graph.Bar_Graph(min_val=.0, max_val=5.)
eye0_graph.pos = (140, 230)
eye0_graph.pos = (260, 230)
eye0_graph.update_rate = 5
eye0_graph.label = "id0 dia: %0.2f"

eye1_graph = graph.Bar_Graph(min_val=.0, max_val=5.)
eye1_graph.pos = (260, 230)
eye1_graph.pos = (380, 230)
eye1_graph.update_rate = 5
eye1_graph.label = "id0 dia: %0.2f"

Expand Down

0 comments on commit 2a74681

Please sign in to comment.