Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v.clean: Change threshold description to clarify map units #2950

Merged
merged 3 commits into from
Nov 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion vector/v.clean/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,8 @@ int main(int argc, char *argv[])
opt.thresh->type = TYPE_DOUBLE;
opt.thresh->required = NO;
opt.thresh->multiple = YES;
opt.thresh->label = _("Threshold in map units, one value for each tool");
opt.thresh->label =
_("One value for each tool; for threshold units, see each tool");
opt.thresh->description = _("Default: 0.0[,0.0,...])");

flag.no_build = G_define_flag();
Expand Down
Loading