Skip to content

Commit a571783

Browse files
committed
Fix a bug where canProvideInformationToDataFromPoint returns the opposite result
1 parent 585d342 commit a571783

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/paintcomponents/DataInputTextfieldPaintComponent.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public String provideInformationToDataFromPoint(
7373
@Override
7474
public boolean canProvideInformationToDataFromPoint(
7575
DataFromPoint<String> dataFromPoint) {
76-
return displayingText == null;
76+
return displayingText != null;
7777
}
7878

7979
@Override

0 commit comments

Comments
 (0)