do we get resolution-independence auto for a QMainWindow derived with ctor:
myMainWindow::myMainWindow():
QMainWindow(nullptr)
{
QToolBar* toolbar=new QToolBar(this);
QAction* action=new QAction(QIcon::fromTheme("document-open"));
toolbar->addAction(action);
addToolBar(toolbar);
}
LordOfBikes wrote
ravas wrote
I'm noticing the icons (eg. undo & redo) are different in that screenshot. Are those from an older version?
Some of the icons are set to use desktop theme icons if available. Windows doesn't support this, but most Linux distros. What you see is the result, some like it and some hate it.
Armin