Login  Register

Re: goals and standards for the next release

Posted by dxli on Jul 17, 2015; 7:09pm
URL: https://forum.librecad.org/goals-and-standards-for-the-next-release-tp5711911p5711918.html

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