Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Education
KStars
Commits
e41853e8
Commit
e41853e8
authored
Nov 11, 2013
by
Jasem Mutlaq
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
REVIEW:113804
parent
f37bfdbd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
4 deletions
+12
-4
kstars/ekos/align.cpp
kstars/ekos/align.cpp
+12
-4
No files found.
kstars/ekos/align.cpp
View file @
e41853e8
...
...
@@ -700,8 +700,12 @@ void Align::updateScopeCoords(INumberVectorProperty *coord)
case
AZ_CORRECTING
:
if
(
currentTelescope
->
isSlewing
()
==
false
)
{
appendLogText
(
i18n
(
"Slew complete. Please adjust your mount's' azimuth knob %1 until the target is in the center of the view."
,
(
decDeviation
>
0
?
i18n
(
"eastward"
)
:
i18n
(
"westward"
))));
if
(
decDeviation
>
0
){
appendLogText
(
i18n
(
"Slew complete. Please adjust your mount's' azimuth knob eastward until the target is in the center of the view."
));
}
else
{
appendLogText
(
i18n
(
"Slew complete. Please adjust your mount's' azimuth knob westward until the target is in the center of the view."
));
}
azStage
=
AZ_INIT
;
}
break
;
...
...
@@ -728,8 +732,12 @@ void Align::updateScopeCoords(INumberVectorProperty *coord)
case
ALT_CORRECTING
:
if
(
currentTelescope
->
isSlewing
()
==
false
)
{
appendLogText
(
i18n
(
"Slew complete. Please %1 the altitude knob on your mount until the target is in the center of the view."
,
(
decDeviation
>
0
?
i18n
(
"lower"
)
:
i18n
(
"raise"
))));
if
(
decDeviation
>
0
){
appendLogText
(
i18n
(
"Slew complete. Please lower the altitude knob on your mount until the target is in the center of the view."
));
}
else
{
appendLogText
(
i18n
(
"Slew complete. Please raise the altitude knob on your mount until the target is in the center of the view."
));
}
altStage
=
ALT_INIT
;
}
break
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment