Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Commit

Permalink
import houdini fps popup from the correct place
Browse files Browse the repository at this point in the history
  • Loading branch information
mkolar committed Apr 28, 2021
1 parent 3e7706a commit 04c17dd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions openpype/hosts/houdini/api/lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def validate_fps():

if current_fps != fps:

from ...widgets import popup
from openpype.widgets import popup

# Find main window
parent = hou.ui.mainQtWindow()
Expand All @@ -219,8 +219,8 @@ def validate_fps():
else:
dialog = popup.Popup2(parent=parent)
dialog.setModal(True)
dialog.setWindowTitle("Maya scene not in line with project")
dialog.setMessage("The FPS is out of sync, please fix")
dialog.setWindowTitle("Houdini scene not in line with project")
dialog.setMessage("The FPS is out of sync, please fix it")

# Set new text for button (add optional argument for the popup?)
toggle = dialog.widgets["toggle"]
Expand Down

0 comments on commit 04c17dd

Please sign in to comment.