dboun / MultiPatientImageProcessing

Bulk processing of medical images
1 stars 1 forks source link

Layout change buttons must be bigger #42

Open ashishsingh18 opened 5 years ago

ashishsingh18 commented 5 years ago

Layout change buttons must be bigger for easy and fast operation

image

dboun commented 5 years ago

Some info on this: The 4 squares of the MultiWidget are OpenGL views. They don't scale well because they don't follow Qt/OS scaling factors. MITK Workbench seems to keep them small too, presumably because it's not easy to get it working right. To get a sense of this, try:

(in linux) export QT_SCALE_FACTOR=1.5 ./MLL.sh

(in windows) set QT_SCALE_FACTOR=1.5 "MLL Semi-Automatic Segmentation.exe"

You will get the following (ignore everything else that looks bad, it's basically scaling twice on my system - it doesn't matter):

Screenshot (1)

ashishsingh18 commented 5 years ago

It doesn't have to do with OpenGL. These 3 icons are done in Qt. These should be QWidgets and if we just resize them, it should work. Alternatively, we can just remove them from the view and put them on toolbar in bigger size.