pyside2
Here are 186 public repositories matching this topic...
In: https://github.com/mherrmann/fbs/blob/master/fbs/_defaults/src/installer/windows/Installer.nsi
RMDir should not have the /r flag on the uninstaller.
As per documentation (https://nsis.sourceforge.io/Reference/RMDir) this runs the risk of the user involuntarily choosing an installation directory containing other data and wiping it upon uninstallation.
I've had one report from one user inst
Should maybe be mentioned in the README.
See: https://stackoverflow.com/questions/44274151/pyside2-on-windows
(venv) C:\Users\X\Documents\Python Scripts\pyside>pip install PySide2
ERROR: Could not find a version that satisfies the requirement PySide2 (from versions: none)
ERROR: No matching distribution found for PySide2
In all bindings you have the keyword argument dir for members of QFileDialog, but in PyQt5 it is directory (personally I think it's better because it doesn't redefine a built-in). For example QFileDialog.getOpenFilename(dir="/home/me") would be QFileDialog.getOpenFileName(directory="/home/me") in PyQt5.
I have no idea how difficult this would be, but personally I think the best soluti
-
Updated
Jun 9, 2020 - Python
-
Updated
Apr 18, 2020 - Python
This includes documenting
from qtpy.QtCore import Signal, Slot- The use of the openfiledialog openfolderdialog helpers (study the option of overloading QFileDialog... which would also need documentation as it would change the default behavior)
- Where to find the Qt version
from qtpy.QtCore import __version__
When converting a file the tool seems to append a new line to the end of the file under certain conditions - Not sure what conditions.
When it appends a new line it seems to always append a "\n" unix style new line. Even when the rest of the file may have different line endings.
- Does the tool have to append a newline? If so.
- Can the output file have consistent line endings that ideall
-
Updated
Sep 5, 2019
-
Updated
Feb 11, 2020 - Python
-
Updated
Jun 1, 2020 - Python
-
Updated
Feb 16, 2020 - Python
-
Updated
Jul 28, 2019
-
Updated
Apr 23, 2020 - Python
Hotbox widgets like we have it within the Maya nodegraph are nice and probably better then simple "list" widgets. We should implement a hotbox widget and consider this as the GraphContext widget.
-
Updated
Dec 8, 2018 - Python
-
Updated
Jun 10, 2020 - Python
-
Updated
Jan 15, 2020 - Python
-
Updated
May 14, 2020 - Python
Improve this page
Add a description, image, and links to the pyside2 topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the pyside2 topic, visit your repo's landing page and select "manage topics."
Enhancement
This is just a naming suggestion for better understanding of the code. In the DrawText function of the Graph element, it would make more sense for the argument text_location to be renamed as the location_on_text as the value of the argument actually signifies the location of the point on the text.