I have removed the status bar from my mainwindow by doing the following:
setStatusBar(0);
setStatusBar(0);
To copy to clipboard, switch view to plain text mode
I now want to add a QSizeGrip back to the mainwindow so that the user can resize it. I want to show it in the bottom right corner. I tried the following below, yet it shows the size grip, but it shows up somewhere near the top left corner:
// This is within the mainwindow
grip->resize(grip->sizeHint());
// This is within the mainwindow
grip = new QSizeGrip(this);
grip->resize(grip->sizeHint());
To copy to clipboard, switch view to plain text mode
Any ideas on how to get this to work?
Thanks!
Bookmarks