Skip to content

Commit ba0c3c8

Browse files
committed
fixed size of CAN input text to 200px
1 parent afa9fea commit ba0c3c8

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

ui/debug_page.slint

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ export component CanTransmitData inherits Rectangle {
6464
text: "Extended Frame";
6565
}
6666
can_id := LineEdit {
67+
width: 200px;
6768
placeholder-text: "ID (hex) - eg: 1814FF12";
6869
edited => {
6970
can_id_check = can_id_check_string(is_extended.checked, can_id.text);
@@ -73,6 +74,7 @@ export component CanTransmitData inherits Rectangle {
7374
is_ok: can_id_check;
7475
}
7576
can_data := LineEdit {
77+
width: 200px;
7678
placeholder-text: "data (hex) - eg: 1A2B3C4D";
7779
edited => {
7880
can_data_check = can_data_check_string(can_data.text);

0 commit comments

Comments
 (0)