Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what does native="true" stand for in a Qt designer form

Tags:

qt

qt4

I am doing a diff between 2 project versions and noticed that some of the ui files have extra attributes in the xml that I have not put there myself:

where would native="true" come from? what would make it get added to the ui?

like image 312
yan bellavance Avatar asked Jun 06 '11 20:06

yan bellavance


1 Answers

Qt GUIs can be displayed in many themes. native="true" forces the application to use the operating system's theme (on Linux, some QT apps look terrible because they don't look like the rest of the native apps).

like image 102
Blender Avatar answered Sep 22 '22 22:09

Blender