Skip to content

Commit be962ff

Browse files
changed minimum size
1 parent 8792984 commit be962ff

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pycpd.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -781,7 +781,7 @@ def initUI(self):
781781

782782
self.bh = BoreholeData()
783783
self.locmap = MapCanvas(self, width=5, height=4, dpi=100)
784-
self.locmap.setMinimumSize(800, 600)
784+
self.locmap.setMinimumSize(800, 550)
785785
toolbar = NavigationToolbar(self.locmap, self)
786786

787787
mapctrl = QFrame()
@@ -808,9 +808,9 @@ def initUI(self):
808808
mapctrl.setLayout(mcl)
809809

810810
self.splot = SpectrumCanvas(self, width=5, height=4, dpi=100)
811-
self.splot.setMinimumSize(500,450)
811+
self.splot.setMinimumSize(500,400)
812812
self.lachplot = LachenbruchCanvas(self, width=5, height=4, dpi=100)
813-
self.lachplot.setMinimumSize(500,450)
813+
self.lachplot.setMinimumSize(500,400)
814814

815815
self.plots = QTabWidget()
816816
self.plots.addTab(self.splot, 'Spectrum')

0 commit comments

Comments
 (0)