python-qt5 icon indicating copy to clipboard operation
python-qt5 copied to clipboard

Unofficial PyQt5 via PyPI for Python 2.7 64-bit on Windows

Results 39 python-qt5 issues
Sort by recently updated
recently updated
newest added

Only Directory which has name with dot (".") can be chosen. qfiledialog.py ```python if __name__ == '__main__': from PyQt5.QtWidgets import QFileDialog, QApplication import sys app = QApplication(sys.argv) file_dialog = QFileDialog(None,...

I'm using PyQt5 version 5.9.7. I've created a QSlider with minimum of 0 and maximum of 100. When I drag the slider all the way to the left, I get...

Hi everyone! I have a problem with PyQt5 usage in jupyter notebook. For some reason it irreversibly freezes the notebook even when executing simple code of creating window with the...

I can not create a window with transparent background with PyQt. On my other other computer which runs Manjaro it works well, but not on my current, which runs Kubuntu...

I did install qt with `pip install git+git://github.com/pyqt/python-qt5.git` in my virtual Python 2.7 environment. However, running this simple `QWebView` Snippet causes a crash. Any Ideas? ``` from PyQt5.QtWebEngineWidgets import QWebEngineView...

When I try to use `overflow-wrap` in an html stylesheet, I get the following error: Unknown property overflow-wrap

**pylupdate5 v5.14.2** My code use [black](https://github.com/psf/black) as the unique code formatter. Black add a trailing comma after some strings. Sadly, pylupdate5 do not extract those strings. **Workaround (painful):** Manually remove...

I tried to print the new coordinates of the handles of a PolyLineROI when I drag it to a new positions. The signal sigRegionChangeFinished signal is emitted but the stateChanged...

Hi, As I understand it, an official version of PyQt5 for Python 2.7 isn't provided because of potential memory corruption issues resulting from mixing the MSVC90 of Python 2.7 with...