Skip to content

Commit

Permalink
some changes
Browse files Browse the repository at this point in the history
  • Loading branch information
olivierfriard committed Nov 7, 2024
1 parent 978fb20 commit 3be6f00
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 2 additions & 0 deletions boris/dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -814,6 +814,8 @@ def __init__(self, label_caption: str, elements_list: list, title: str = ""):

hbox2 = QHBoxLayout()

hbox2.addItem(QSpacerItem(40, 20, QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Minimum))

self.pbCancel = QPushButton(cfg.CANCEL)
self.pbCancel.clicked.connect(self.reject)
hbox2.addWidget(self.pbCancel)
Expand Down
1 change: 0 additions & 1 deletion boris/project_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -1522,7 +1522,6 @@ def open_project_json(projectFileName: str) -> tuple:
# sort events by time asc
for obs_id in pj[cfg.OBSERVATIONS]:
if pj[cfg.OBSERVATIONS][obs_id][cfg.TYPE] in (cfg.LIVE, cfg.MEDIA):
# print(pj[cfg.OBSERVATIONS][obs_id][cfg.EVENTS])
pj[cfg.OBSERVATIONS][obs_id][cfg.EVENTS].sort()

return projectFileName, projectChanged, pj, msg
Expand Down
4 changes: 2 additions & 2 deletions boris/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@
"""

__version__ = "8.28.1"
__version_date__ = "2024-10-25"
__version__ = "8.28.2"
__version_date__ = "2024-11-07"

0 comments on commit 3be6f00

Please sign in to comment.