comparison bin/curvecalc @ 745:62f99e2a00ac

updates for screen size Ignore-this: 88a81b44e30b3cb9033fe86bc7672846
author drewp@bigasterisk.com
date Fri, 15 Jun 2012 17:53:59 +0000
parents 3d1112a894df
children 5656767ca025
comparison
equal deleted inserted replaced
744:812be8482388 745:62f99e2a00ac
61 self.refreshTheme() 61 self.refreshTheme()
62 mainwin.show_all() 62 mainwin.show_all()
63 63
64 mainwin.connect("delete-event", lambda *args: reactor.crash()) 64 mainwin.connect("delete-event", lambda *args: reactor.crash())
65 mainwin.set_title("curvecalc - %s" % graph.label(song)) 65 mainwin.set_title("curvecalc - %s" % graph.label(song))
66 mainwin.parse_geometry("715x930+1080+26") 66 mainwin.parse_geometry("715x930-0+24")
67 67
68 # this is the only one i found that would set the size right, 68 # this is the only one i found that would set the size right,
69 # but it's a minimum size, which i don't really want 69 # but it's a minimum size, which i don't really want
70 mainwin.set_size_request(1000, 1000) 70 mainwin.set_size_request(1678, 922)
71 71
72 wtree.get_object("subterms").connect("add", self.onSubtermChildAdded) 72 wtree.get_object("subterms").connect("add", self.onSubtermChildAdded)
73 self.add_subterms_for_song(song, curveset, subterms) 73 self.add_subterms_for_song(song, curveset, subterms)
74 self.refreshCurveView() 74 self.refreshCurveView()
75 75