Skip to content

Commit

Permalink
made editable the metadata's vessele combobox
Browse files Browse the repository at this point in the history
  • Loading branch information
giumas committed Nov 21, 2023
1 parent 36dea67 commit 5c53c74
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion hyo2/soundspeed/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
logger.addHandler(logging.NullHandler())

name = "Sound Speed"
__version__ = '2023.0.9'
__version__ = '2023.0.10'
__copyright__ = 'Copyright 2023 University of New Hampshire, Center for Coastal and Ocean Mapping'

lib_info = LibInfo()
Expand Down
2 changes: 1 addition & 1 deletion hyo2/soundspeedmanager/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
logger.addHandler(logging.NullHandler())

name = "Sound Speed Manager"
__version__ = "2023.0.9"
__version__ = "2023.0.10"
__copyright__ = "Copyright 2023 University of New Hampshire, Center for Coastal and Ocean Mapping"

app_info = AppInfo()
Expand Down
1 change: 1 addition & 0 deletions hyo2/soundspeedmanager/dialogs/metadata_dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ def __init__(self, main_win, lib, parent=None):
label.setFixedWidth(lbl_width)
hbox.addWidget(label)
self.vessel = QtWidgets.QComboBox()
self.vessel.setEditable(True)
self.vessel.setDisabled(True)
logger.debug(lib.setup.noaa_tools)
self.vessel.addItems(vessel_list)
Expand Down
2 changes: 1 addition & 1 deletion hyo2/soundspeedsettings/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
logger.addHandler(logging.NullHandler())

name = "Sound Speed Settings"
__version__ = '2023.0.9'
__version__ = '2023.0.10'
__copyright__ = 'Copyright 2023 University of New Hampshire, Center for Coastal and Ocean Mapping'

app_info = AppInfo()
Expand Down

0 comments on commit 5c53c74

Please sign in to comment.