diff --git a/.conda_mac/build.sh b/.conda_mac/build.sh index af519131a..2036035f6 100644 --- a/.conda_mac/build.sh +++ b/.conda_mac/build.sh @@ -8,6 +8,5 @@ export PIP_NO_DEPENDENCIES=False export PIP_IGNORE_INSTALLED=False pip install --no-cache-dir -r requirements.txt -pip install PySide2==5.14.1 python setup.py install --single-version-externally-managed --record=record.txt \ No newline at end of file diff --git a/sleap/gui/app.py b/sleap/gui/app.py index f463a04e3..ed75b1ac6 100644 --- a/sleap/gui/app.py +++ b/sleap/gui/app.py @@ -207,7 +207,7 @@ def __init__( def bulletin_dialog(self): """Displays bulletin dialog is new announcement is available.""" # Initialize the bulletin popup worker - popup_worker = BulletinWorker(self.state["announcement"], self) + popup_worker = BulletinWorker("# What's New? \n#" + self.state["announcement"], self) popup_worker.show_bulletin() # Save the bulletin worker so we can close them later diff --git a/sleap/gui/dialogs/bulletin.py b/sleap/gui/dialogs/bulletin.py index c9b7c6237..31efca608 100644 --- a/sleap/gui/dialogs/bulletin.py +++ b/sleap/gui/dialogs/bulletin.py @@ -16,6 +16,7 @@ def __init__(self, content, parent=None): self._content = content # Set the window to stay on top self.setWindowFlags(self.windowFlags() | Qt.WindowStaysOnTopHint) + self.setWindowTitle("What's New?") def show_bulletin(self):