Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Further improvement and bugfixes for the colorimeter correction workflow #469

Open
wants to merge 4 commits into
base: develop
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
The .ti3 path dropdowns now correctly show the default file, instead …
…of being blank
ethanbrookins committed Dec 15, 2024
commit b03bd1d266095a1f55374eab4b57e21db5c5afdb
2 changes: 2 additions & 0 deletions DisplayCAL/display_cal.py
Original file line number Diff line number Diff line change
@@ -12785,6 +12785,7 @@ def check_last_ccxx_ti3(event):
)
if defaultFile:
dlg.reference_ti3.SetPath(os.path.join(defaultDir, defaultFile))
wx.CallAfter(dlg.reference_ti3.setupControl)
dlg.reference_ti3.changeCallback = check_last_ccxx_ti3
dlg.reference_ti3.SetMaxFontSize(11)
dlg.reference_ti3_droptarget = FileDrop(dlg)
@@ -12909,6 +12910,7 @@ def reference_instrument_handler(event):
)
if defaultFile:
dlg.colorimeter_ti3.SetPath(os.path.join(defaultDir, defaultFile))
wx.CallAfter(dlg.colorimeter_ti3.setupControl)
dlg.colorimeter_ti3.changeCallback = check_last_ccxx_ti3
dlg.colorimeter_ti3.SetMaxFontSize(11)
dlg.colorimeter_ti3_droptarget = FileDrop(dlg)