Skip to content
Open
Changes from all commits
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
7 changes: 7 additions & 0 deletions crosspoint_reader/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
QDialogButtonBox,
QFormLayout,
QHBoxLayout,
QLabel,
QLineEdit,
QPlainTextEdit,
QPushButton,
Expand Down Expand Up @@ -47,6 +48,12 @@ def __init__(self):

layout.addRow('Host', self.host)
layout.addRow('Port', self.port)

notice = QLabel('Host and port settings are fallback values used only when the device is not auto-discoverable by UDP broadcast.')
notice.setWordWrap(True)
notice.setStyleSheet('color: gray; font-style: italic;')
layout.addRow('', notice)

layout.addRow('Upload path', self.path)
layout.addRow('Chunk size', self.chunk_size)
layout.addRow('', self.debug)
Expand Down