mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
Merge pull request #1649 from pypeclub/feature/1333-pop-up-hint
#1333 - added tooltip hints to Pyblish buttons
This commit is contained in:
commit
ff76d5c78e
1 changed files with 4 additions and 1 deletions
|
|
@ -234,16 +234,19 @@ class Window(QtWidgets.QDialog):
|
|||
footer_button_stop = QtWidgets.QPushButton(
|
||||
awesome["stop"], footer_widget
|
||||
)
|
||||
footer_button_stop.setToolTip("Stop publishing")
|
||||
footer_button_reset = QtWidgets.QPushButton(
|
||||
awesome["refresh"], footer_widget
|
||||
)
|
||||
footer_button_reset.setToolTip("Restart publishing")
|
||||
footer_button_validate = QtWidgets.QPushButton(
|
||||
awesome["flask"], footer_widget
|
||||
)
|
||||
footer_button_validate.setToolTip("Run validations")
|
||||
footer_button_play = QtWidgets.QPushButton(
|
||||
awesome["play"], footer_widget
|
||||
)
|
||||
|
||||
footer_button_play.setToolTip("Publish")
|
||||
layout = QtWidgets.QHBoxLayout()
|
||||
layout.setContentsMargins(5, 5, 5, 5)
|
||||
layout.addWidget(footer_info, 0)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue