Skip to content

Qt Design Studio

For questions about Qt Design Studio

117 Topics 343 Posts
QtWS25 Last Chance
  • 0 Votes
    2 Posts
    386 Views
    R
    The errors you are encountering suggest that there is a problem with the location attribute in your vertex shader. In OpenGL, the location attribute specifies the index of a vertex attribute in the shader program, and it should be unique for each attribute. In your case, it seems that two vertex attributes are using the same location (location 16), which is causing the conflict. To resolve this issue, you should check your vertex shader code and ensure that each attribute has a unique location specified. One way to do this is to explicitly specify the location for each attribute in the shader code, like this: layout(location = 0) in vec3 vertexPosition; layout(location = 1) in vec3 vertexNormal; layout(location = 2) in vec2 vertexTexCoord; layout(location = 3) in vec4 vertexTangent; Then, you should update your QtDesign code to match the specified locations for each vertex attribute in the shader. If the issue persists, you could also try checking if there are any conflicting locations specified in the QtDesign Studio UI. Also, you may want to ensure that you are using the correct version of the shader language in your shader code. The code you provided uses version 330 core, which should work for most modern OpenGL implementations.
  • use html, css for ui form

    Unsolved
    3
    0 Votes
    3 Posts
    452 Views
    F
    @sierdzio thanks for the answer!
  • Drag and drop of qtbridge files?

    Unsolved
    5
    0 Votes
    5 Posts
    500 Views
    G
    @Vikas-Pachdha hello Vikas-Pachdha. With a new license, that issue has been resolved. It was a enterprise license, but I don't know why the bridge didn't connect. Thank you so much for kindly letting me know. have a good day : )
  • ActiveX Control Grayed Out

    Unsolved
    4
    0 Votes
    4 Posts
    734 Views
    jsulmJ
    @Chronal said in ActiveX Control Grayed Out: Unfortunately, ActiveX controls are not supported in Qt Wrong. https://doc.qt.io/qt-6/qt-activex.html
  • Is the generated code from this designer also licensed under GPL-2.0?

    Unsolved
    3
    0 Votes
    3 Posts
    358 Views
    jsulmJ
    @Chronal said in Is the generated code from this designer also licensed under GPL-2.0?: The Qt Company has stated that all code generated from the Qt Designer is licensed under the GPL 2.0 Where?
  • module "QtQuick.Studio.Effects" is not installed

    Solved
    3
    0 Votes
    3 Posts
    1k Views
    I
    Build the dev branch from here and it will give the dynamic QtQuick.Studio.Effects library which can be cross compiled.
  • extra padding getting added even though everything is set to 0

    Unsolved
    2
    0 Votes
    2 Posts
    285 Views
    Y
    I don't think it is possible to get rid of the extra padding. It is possibly by default there. I think you can reduce the size to get the required field. Try setting it to a negative value.
  • Qt Design Studio - Properties Modal Survey not functioning

    Unsolved
    2
    0 Votes
    2 Posts
    323 Views
    SGaistS
    Hi and welcome to devnet, Sounds like a bug, you should rather report that to the bug tracker. This is a user forum.
  • Qml component not displaying in designer

    Unsolved
    4
    0 Votes
    4 Posts
    2k Views
    L
    @SethMacMaroon hello, i also ave problem with Mac OS and qt, the qtdesigner always asking to access my documents, and qtdesign Studio have an error with kit and I can’t solve it. Are you following a tuto of Wanderson on YouTube ? 😂
  • What is the limitations if I don't use ui files.

    Unsolved
    4
    0 Votes
    4 Posts
    562 Views
    JKSHJ
    @CKurdu said in What is the limitations if I don't use ui files.: I can use the graphical editor also. Do you mean I will not be able to use it in the future? The graphical editor requires you to keep them as *.ui.qml files
  • Cann't start Qt Design Studio after upgrade, what's the problem?

    Unsolved
    3
    0 Votes
    3 Posts
    691 Views
    T
    As far as I know this is the only report of such an issue. The only reason for this I can think of is the update from Qt 6.3 to Qt 6.4. Qt Design Studio 3.9 now uses Qt 6.4, but there is as mentioned no known issue related to this. The changes to the welcome page itself were quite minimal and should not be triggered on startup. Did disabling the Welcome plugin solve this issue? Maybe this is related to the download of the latest example thumbnails. You can disable this by adding this to your qtdesignstudio.ini file: QML/Designer/EnableWelcomePageDownload= false
  • At startup, the entire program window is covered with green lines.

    Solved
    4
    0 Votes
    4 Posts
    482 Views
    S
    @JKSH said in At startup, the entire program window is covered with green lines.: Is your default GPU an Intel one? Intel integrated GPUs are known to cause various problems, especially when combined with a dedicated NVIDIA/AMD GPU (for example: https://bugreports.qt.io/browse/QTBUG-69538 ) Yes, that was exactly the problem. I also updated the intel graphic drivers. In this case, the nVidia panel settings are not required.
  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    5 Views
    No one has replied
  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    20 Views
    No one has replied
  • I don't understand the Designer-Developer Workflow in the documentation...

    Unsolved
    1
    1 Votes
    1 Posts
    6k Views
    No one has replied
  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    9 Views
    No one has replied
  • "Show Live Preview" sometimes doesn't work right

    Unsolved
    2
    0 Votes
    2 Posts
    718 Views
    T
    I am not aware of this issue. You can always restart the live preview by disabling it (unchecking the toolbutton) and then checking it on again. This is much faster than restarting Qt Design Studio. In some special cases something might interfere with the update. If it actually requires you to restart Qt Design Studio this would be a really weird bug. In any case please file a bug report.
  • Checkbox Dimension

    Unsolved checkbox qtdesign c++
    2
    0 Votes
    2 Posts
    539 Views
    T
    The size of the CheckBox is on controlled by the style/theme. See: https://doc.qt.io/qt-6/qtquickcontrols2-styles.html
  • Automatic new lines in qt design studio

    Unsolved
    5
    0 Votes
    5 Posts
    638 Views
    T
    At this point in time .ui.qml files are always formatted. We can consider adding an option, but I would prefer to fix the code formatter. Can you file a bug report for this?
  • Custom component not appearing under My Components

    Unsolved
    2
    0 Votes
    2 Posts
    519 Views
    T
    A Component will not appear if you are currently inside that component. e.g. if you have components A and B then component B will be visible if you are editing component A and vice versa. Any component with a capitalized name, that is derived from Item and does not contain syntax errors should be visible.