diff --git a/README.md b/README.md index 35134d8..c72918d 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ These PyQt examples teach you to create a desktop app with Python. Start with "[Hello World](src/01%20PyQt%20QLabel)" and work your way up to the [official PyQt demos](#official-pyqt-demos). You can use Windows, Mac or Linux. -| PyQt QLabel | PyQt widgets screenshot | QVBoxLayout PyQt5 | PyQt Signals and Slots | Qt Designer Python | +| PyQt QLabel | PyQt widgets screenshot | QVBoxLayout PyQt5 | PyQt Signals and Slots | Qt Designer Python | | :--: | :--: | :--: | :--: | :--: | | Hello World! | Common PyQt Widgets | Layouts | Signals and Slots | Qt Designer & Python | diff --git a/src/04 PyQt Signals and Slots/README.md b/src/04 PyQt Signals and Slots/README.md index 682aae0..93a14c7 100644 --- a/src/04 PyQt Signals and Slots/README.md +++ b/src/04 PyQt Signals and Slots/README.md @@ -2,7 +2,7 @@ PyQt Signals let you react to user input such as mouse clicks. A *slot* is a function that gets called when such an event occurs. The file [`main.py`](main.py) in this directory shows this in action: When the user clicks a button, a popup appears: -

PyQt Signals and Slots

+

PyQt Signals and Slots

The code begins in the usual way. First, we import PyQt5 and create a `QApplication`: diff --git a/src/04 PyQt Signals and Slots/pyqt-signals-and-slots.jpg b/src/screenshots/pyqt-signals-and-slots.jpg similarity index 100% rename from src/04 PyQt Signals and Slots/pyqt-signals-and-slots.jpg rename to src/screenshots/pyqt-signals-and-slots.jpg