Ticket #2358: SearchAction-case-flipped.patch

File SearchAction-case-flipped.patch, 641 bytes (added by avarab@…, 17 years ago)

Flip the boolean test in SearchAction.java that produces CS and CI

  • src/org/openstreetmap/josm/actions/search/SearchAction.java

     
    198198
    199199        @Override
    200200        public String toString() {
    201             String cs = caseSensitive ? tr("CI") : tr("CS");
     201            String cs = caseSensitive ? tr("CS") : tr("CI");
    202202            String rx = regexSearch ? (", " + tr("RX")) : "";
    203203            return "\"" + text + "\" (" + cs + rx + ", " + mode + ")";
    204204        }