-
Notifications
You must be signed in to change notification settings - Fork 7
can"t make it run #8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
I have the same error and fixed it by adding |
I´m stuck here too. I´m just starting with Pyside+Qt+Qml so maybe there is an obvious solution but i just dont know. So, what i notice so far: ProjectBrowser {
id: browser
projectPath: userProjectPath
extensions: ['qml', 'ui.qml']
}
@Property('QStringList', notify=extensionsChanged)
def extensions(self):
return self._extensions
@extensions.setter
def extensions(self, value):
if self._extensions == value:
return
self._extensions = value
self.extensionsChanged.emit() After messing around i noticed that none of this custom component properties are working. If u comment the property settings Not sure if this repo is still being maintained, and i´m still new on this stack so this is the further that i could go by now. |
While using PySide2 and due to bug PYSIDE-9000: https://bugreports.qt.io/browse/PYSIDE-900 having two methods with the same name breaks the Qt registering process.
Hi,
from clean virtualenv with only pyside2 and python-qt-live-coding :
Have nive day
Jimmy
The text was updated successfully, but these errors were encountered: