mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-03 10:14:04 +00:00
0c63fc6f93
* OS native dialog replaced on Qt dialog * Starting fluxbox added to make File Dialog visible
12 lines
206 B
Python
12 lines
206 B
Python
import allure
|
|
|
|
from gui.elements.object import QObject
|
|
|
|
|
|
class TextLabel(QObject):
|
|
|
|
@property
|
|
@allure.step('Get text {0}')
|
|
def text(self) -> str:
|
|
return str(self.object.text)
|