Opened 41 hours ago
Last modified 18 hours ago
#24342 new defect
allow to disable filtering in the tags window
Reported by: | dieterdreist | Owned by: | team |
---|---|---|---|
Priority: | normal | Milestone: | 25.06 |
Component: | Core | Version: | |
Keywords: | filter, tags | Cc: |
Description
I continuously get problems with the tags window, because when I hit "alt+a" to add a new tag, or "s" to switch to selection, instead the tags window had focus and adds a filter. Sometimes I do not see the tiny "s" or "å" in the filter fields, and do not recognized there are more tags on the object than those that I see.
Frankly, I never wanted to filter tags and I find the idea harmful, one should look at all tags when editing an object. Please give us an opt out at least, because it gets so often in the way.
Attachments (1)
Change History (8)
follow-up: 4 comment:1 by , 25 hours ago
comment:2 by , 25 hours ago
is it really
properties.filter.visable
or maybe
properties.filter.visible
?
I tried both but the filter line remains in the tags window. I attached now a screenshot which shows the part I am writing about (to avoid a misunderstanding). Btw.: how can I remove custom settings which I have added myself?
by , 25 hours ago
Attachment: | Screenshot 2025-06-05 at 12.08.14.png added |
---|
filter line in tags window
comment:3 by , 25 hours ago
I think shortcut related behaviour may depend on the specific OS and java, I am on MacOS here. To illustrate this: on another machine which is running on FreeBSD, I found that ALT+click in refine mode (w) does not delete nodes (it does nothing) because the FreeBSD window manager uses "ALT" + drag to move windows (it is mostly unrelated to the issue here, but shows that the same keys and settings may behave differently on different systems).
comment:4 by , 23 hours ago
Replying to GerdP:
I cannot reproduce the problem, but you can disable the filter in the tags windows:
Set properties.filter.visable to false and restart JOSM.
Hmm, there is no code for such a key (yet).
-
src/org/openstreetmap/josm/gui/dialogs/properties/PropertiesDialog.java
823 823 824 824 tagTable.setVisible(hasTags); 825 825 tagTable.getTableHeader().setVisible(hasTags); 826 tagTableFilter.setVisible(hasTags); 826 boolean filterVisible = Config.getPref().getBoolean("properties.filter.visible", true); 827 tagTableFilter.setVisible(hasTags && filterVisible); 827 828 selectSth.setVisible(!hasSelection); 828 829 pluginHook.setVisible(hasSelection); 829 830 }
comment:5 by , 21 hours ago
~Hm, I tried the option with r19334 and it works (with the typo "visable"), but only after a restart.~
Sorry, nonsense. This old preference was still in my settings and it has no function. Don't know what I tested, seems I didn't select any object.
comment:7 by , 18 hours ago
Milestone: | → 25.06 |
---|
I cannot reproduce the problem, but you can disable the filter in the tags windows:
Set properties.filter.visable to false and restart JOSM.