Fix Project Details dialog update issue (#883)

* Move project details dialog to correct folder
* Add update functions that are run each time the project details dialog is opened
This commit is contained in:
Veronica Berglyd Olsen
2021-09-10 01:06:40 +02:00
committed by GitHub
parent 3c8cb34b0a
commit 8313de692e
5 changed files with 46 additions and 21 deletions
@@ -25,7 +25,7 @@ from tools import getGuiItem
from PyQt5.QtWidgets import QAction, QMessageBox
from novelwriter.gui import GuiProjectDetails
from novelwriter.dialogs import GuiProjectDetails
keyDelay = 2
typeDelay = 1
@@ -33,7 +33,7 @@ stepDelay = 20
@pytest.mark.gui
def testGuiProjDetails_Dialog(qtbot, monkeypatch, nwGUI, nwLipsum):
def testDlgProjDetails_Dialog(qtbot, monkeypatch, nwGUI, nwLipsum):
"""Test the project details dialog.
"""
# Block message box
@@ -111,4 +111,4 @@ def testGuiProjDetails_Dialog(qtbot, monkeypatch, nwGUI, nwLipsum):
projDet._doClose()
nwGUI.closeMain()
# END Test testGuiProjDetails_Dialog
# END Test testDlgProjDetails_Dialog