Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/IALeMans/24hcode2019
Browse files Browse the repository at this point in the history
  • Loading branch information
AMairesse committed Jan 20, 2019
2 parents cd1001e + 4071931 commit f12f335
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion UserInterface/ItemsList.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def onButtonClicked(self, node, loggerWidget=None):
self.subWidget.registerCloseEvent(self.onWidgetDestroyed)
self.dataGridWidget.setDisabled(True)
self.subWidget.setWindowTitle("Node " + str(node["id"]) + " Detail")
self.subWidget.setFixedSize(640, 480)
self.subWidget.setFixedSize(800, 600)
self.subWidget.show()

def onWidgetDestroyed(self):
Expand Down
2 changes: 1 addition & 1 deletion UserInterface/NodeDetails.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def saveImages(self):
for i, image in enumerate(self.images):
imageWidget = QLabel()
imagePixmap = QPixmap(image["path"])
imagePixmap = imagePixmap.scaledToHeight(240)
imagePixmap = imagePixmap.scaledToHeight(390)
imageWidget.setPixmap(imagePixmap)

self.imagesLayout.addWidget(imageWidget, 0, i)
Expand Down

0 comments on commit f12f335

Please sign in to comment.