Name changes

This commit is contained in:
ByteDream 2021-03-09 00:19:55 +01:00
parent 1e78728291
commit 7cae8d2ae5
2 changed files with 21 additions and 21 deletions

View File

@ -20,7 +20,7 @@ NOTE: Not every emoji looks "nice" in PyQt5 so you may have to install a custom
```python ```python
from PyQt5 import QtWidgets # import pyqt5 from PyQt5 import QtWidgets # import pyqt5
from QOptionObjects import QEmojiPicker # import the emoji picker from QCustomObjects import QEmojiPicker # import the emoji picker
if __name__ == '__main__': if __name__ == '__main__':
# create a new app # create a new app
@ -50,7 +50,7 @@ A hydrodynamic layout which rearranges the items in it dynamically if its resize
```python ```python
from PyQt5 import QtWidgets # import pyqt5 from PyQt5 import QtWidgets # import pyqt5
from QOptionObjects import QFlowLayout # import the flow layout from QCustomObjects import QFlowLayout # import the flow layout
if __name__ == '__main__': if __name__ == '__main__':
# create a new app # create a new app
@ -83,7 +83,7 @@ A simple toggle switch
```python ```python
from PyQt5 import QtWidgets # import pyqt5 from PyQt5 import QtWidgets # import pyqt5
from QOptionObjects import QSwitch # import the switch from QCustomObjects import QSwitch # import the switch
if __name__ == '__main__': if __name__ == '__main__':
# create a new app # create a new app
@ -115,7 +115,7 @@ A widget where you can create, delete and edit tags
```python ```python
from PyQt5 import QtWidgets # import pyqt5 from PyQt5 import QtWidgets # import pyqt5
from QOptionObjects import QTagEdit # import the tag edit from QCustomObjects import QTagEdit # import the tag edit
if __name__ == '__main__': if __name__ == '__main__':
# create a new app # create a new app