Login  Register

goals and standards for the next release

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
6 messages Options Options
Embed post
Permalink
Reply | Threaded
Open this post in threaded view
| More
Print post
Permalink

goals and standards for the next release

ravas
870 posts
I'm curious about what the goals are for the next release.
Considering Dongxu has fixed crashes that made 4 tools unusable,
I would say the nightly builds are far more stable.
We seem to be answering the majority of forum posts with "try the nightly build".
Reply | Threaded
Open this post in threaded view
| More
Print post
Permalink

Re: goals and standards for the next release

dxli
2007 posts
I really want to HD display issue be fixed before releasing 2.1.0

correct me, if I'm wrong. I think HD display can be handled automatically by Qt, if we don't fool Qt by: fixed icon sizes, incorrect layout/size policy, etc.

ravas wrote
I'm curious about what the goals are for the next release.
Considering Dongxu has fixed crashes that made 4 tools unusable,
I would say the nightly builds are far more stable.
We seem to be answering the majority of forum posts with "try the nightly build".
Reply | Threaded
Open this post in threaded view
| More
Print post
Permalink

Re: goals and standards for the next release

ravas
870 posts
The other toolbar icons look equally small (img), and they are just normal toolbars. I think we will need the icon size option.

I'm noticing the icons (eg. undo & redo) are different in that screenshot. Are those from an older version?
Reply | Threaded
Open this post in threaded view
| More
Print post
Permalink

Re: goals and standards for the next release

LordOfBikes
Administrator
1119 posts
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
investing less than half an hour into Search function can save hours or days of waiting for a solution
Reply | Threaded
Open this post in threaded view
| More
Print post
Permalink

Re: goals and standards for the next release

ravas
870 posts
Reply | Threaded
Open this post in threaded view
| More
Print post
Permalink

Re: goals and standards for the next release

dxli
2007 posts
In reply to this post by LordOfBikes
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