Skip to content

Commit edc391e

Browse files
committed
Fix splitting of selected entry in datapoint list
1 parent 219d4f6 commit edc391e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/io/calimero/gui/ProcCommTab.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,7 @@ private Datapoint fetchDatapoint(final GroupAddress main, final Object[] dptData
512512
private GroupAddress selectedDpAddress() throws KNXFormatException
513513
{
514514
final String text = points.getText();
515-
int endIndex = text.indexOf('\t');
515+
int endIndex = text.indexOf(' ');
516516
if (endIndex == -1)
517517
endIndex = text.length();
518518
return new GroupAddress(text.substring(0, endIndex));

0 commit comments

Comments
 (0)