Skip to content

Commit

Permalink
fix UI of Remote MCAP
Browse files Browse the repository at this point in the history
  • Loading branch information
facontidavide committed Feb 8, 2024
1 parent 0740d7a commit bb59536
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plotjuggler_plugins/ToolboxRemote/widget_remote_load.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ RemoteLoad::RemoteLoad(QWidget *parent) :
ui(new Ui::RemoteLoad)
{
ui->setupUi(this);
ui->linePort->setValidator( new QIntValidator(1, 9999, this) );
ui->linePort->setValidator( new QIntValidator(1, 65535, this) );

QHeaderView* header = ui->tableWidget->horizontalHeader();
header->setSectionResizeMode(0, QHeaderView::Stretch);
Expand Down
2 changes: 1 addition & 1 deletion plotjuggler_plugins/ToolboxRemote/widget_remote_load.ui
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
<string>localhost</string>
</property>
<property name="readOnly">
<bool>true</bool>
<bool>false</bool>
</property>
<property name="placeholderText">
<string>IP address</string>
Expand Down

0 comments on commit bb59536

Please sign in to comment.