-
-
Notifications
You must be signed in to change notification settings - Fork 3k
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
[GUI] Fix project's Ellipsoid option description (adding angle to distance and area) #58660
Conversation
src/ui/qgsprojectpropertiesbase.ui
Outdated
@@ -605,7 +605,7 @@ | |||
<widget class="QLabel" name="textLabel1_8"> | |||
<property name="text"> | |||
<string>Ellipsoid | |||
(for distance and area calculations)</string> | |||
(distance, area, angle calculations)</string> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(distance, area, angle calculations)</string> | |
(distance, area and angle calculations)</string> |
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove the text in parenthesis and let's go for a tooltip?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
perfect!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PR updated.
@agiudiceandrea A documentation ticket will be opened at https://github.com/qgis/QGIS-Documentation when this PR is merged. Please update the description (not the comments) with helpful description and screenshot to help the work from documentors. Thank you! |
@agiudiceandrea |
…tance and area) (qgis#58660) * [GUI] Fix project's Ellipsoid option description * [GUI] Use a tooltip for project's Ellipsoid option description
Description
Also angle measurement, besides the distance and area ones, is ellipsoidal. (Unless "None \ Planimetric" ellipsoid is set).
In Project -> Properties -> General -> Measurements:
from
to
Another possible approach would be to completely remove the
(for distance and area calculations)
text.Not sure if this PR is worth to be backported.
EDIT: as suggested in the review, I've removed the text in parenthesis and added a tooltip to the "Ellipsoid" option's label with the text
For distance, area and angle calculations
.