Found 445 posts.
Search results Show results as topic list.
Technical Discussion » When the Global UI Size is set to "Large" the radial menu icons become broken
- tpetrick
- 596 posts
- Offline
I was able to reproduce similar visual issues on my high dpi Linux system, and put in a fix for it this afternoon. Can you try tomorrow's build (16.0.550) and see if it also fixes the problem for you?
Edited by tpetrick - March 16, 2017 16:02:04
Technical Discussion » Some Qt questions
- tpetrick
- 596 posts
- Offline
Alexey,
Can you try adding the following method to your Python Panel script:
def dragEnterEvent(self, event):
event.acceptProposedAction()
That block of code was needed to make the example work on my machine. Also, which platform are you currently using? I'm working through some drag and drop bugs on OS X so if you're on the platform drag and drop may not work as expected.
Can you try adding the following method to your Python Panel script:
def dragEnterEvent(self, event):
event.acceptProposedAction()
That block of code was needed to make the example work on my machine. Also, which platform are you currently using? I'm working through some drag and drop bugs on OS X so if you're on the platform drag and drop may not work as expected.
Technical Discussion » Some Qt questions
- tpetrick
- 596 posts
- Offline
Getting the Houdini stylesheet from the QApplication instance should be safe in both PySide and C++ code. We don't currently have a method for directly querying Houdini's style sheet directly. The stylesheet is generated at runtime based on the current colour settings and a base stylesheet.
If you're working in C++, you can also use QT_Utils::applyWidgetStyleSheets(QWidget*) to apply the Houdini style sheet to a QWidget. Note that this will overwrite any style sheets currently set on the QWidget.
If you're working in C++, you can also use QT_Utils::applyWidgetStyleSheets(QWidget*) to apply the Houdini style sheet to a QWidget. Note that this will overwrite any style sheets currently set on the QWidget.
Technical Discussion » Houdini 14 and Wacom | klick problem
- tpetrick
- 596 posts
- Offline
Technical Discussion » Some Qt questions
- tpetrick
- 596 posts
- Offline
Calling setStyleSheet in Python Panels should work as expected in tomorrow's build. Since we're using stylesheets, QFont and QPalette values are ignored automatically by Qt.
I'll take look at the QGroupBox and QTextEdit styling issues you mentioned.
I'll take look at the QGroupBox and QTextEdit styling issues you mentioned.
-
- Quick Links