Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
KStars
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
28
Issues
28
List
Boards
Labels
Service Desk
Milestones
Merge Requests
5
Merge Requests
5
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Education
KStars
Commits
c87f6c2f
Commit
c87f6c2f
authored
Jan 19, 2017
by
Robert Lancaster
Committed by
Jasem Mutlaq
Jan 19, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
OSX minor changes
parent
3cab4911
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
4 deletions
+10
-4
kstars/ekos/align/align.cpp
kstars/ekos/align/align.cpp
+2
-0
kstars/ekos/focus/focus.cpp
kstars/ekos/focus/focus.cpp
+2
-0
kstars/kstars.cpp
kstars/kstars.cpp
+0
-4
kstars/kstarsactions.cpp
kstars/kstarsactions.cpp
+2
-0
kstars/tools/observinglist.cpp
kstars/tools/observinglist.cpp
+4
-0
No files found.
kstars/ekos/align/align.cpp
View file @
c87f6c2f
...
...
@@ -122,7 +122,9 @@ Align::Align()
gotoModeButtonGroup
->
button
(
currentGotoMode
)
->
setChecked
(
true
);
syncBoxesB
->
setIcon
(
QIcon
::
fromTheme
(
"edit-copy"
,
QIcon
(
":/icons/breeze/default/edit-copy.svg"
)));
syncBoxesB
->
setAttribute
(
Qt
::
WA_LayoutUsesWidgetRect
);
clearBoxesB
->
setIcon
(
QIcon
::
fromTheme
(
"edit-clear"
,
QIcon
(
":/icons/breeze/default/edit-clear.svg"
)));
clearBoxesB
->
setAttribute
(
Qt
::
WA_LayoutUsesWidgetRect
);
raBox
->
setDegType
(
false
);
//RA box should be HMS-style
...
...
kstars/ekos/focus/focus.cpp
View file @
c87f6c2f
...
...
@@ -99,9 +99,11 @@ Focus::Focus()
frameNum
=
0
;
showFITSViewerB
->
setIcon
(
QIcon
::
fromTheme
(
"kstars_fitsviewer"
,
QIcon
(
":/icons/breeze/default/kstars_fitsviewer.svg"
)));
showFITSViewerB
->
setAttribute
(
Qt
::
WA_LayoutUsesWidgetRect
);
connect
(
showFITSViewerB
,
SIGNAL
(
clicked
()),
this
,
SLOT
(
showFITSViewer
()));
toggleFullScreenB
->
setIcon
(
QIcon
::
fromTheme
(
"view-fullscreen"
,
QIcon
(
":/icons/breeze/default/view-fullscreen.svg"
)));
toggleFullScreenB
->
setAttribute
(
Qt
::
WA_LayoutUsesWidgetRect
);
connect
(
toggleFullScreenB
,
SIGNAL
(
clicked
()),
this
,
SLOT
(
toggleFocusingWidgetFullScreen
()));
connect
(
startFocusB
,
SIGNAL
(
clicked
()),
this
,
SLOT
(
start
()));
...
...
kstars/kstars.cpp
View file @
c87f6c2f
...
...
@@ -80,10 +80,6 @@ KStars::KStars( bool doSplash, bool clockrun, const QString &startdate )
//Note: You need to make sure the environment variables for KStars are set correctly to get this running properly.
#ifdef Q_OS_OSX
QProcess
*
klauncher
=
new
QProcess
(
this
);
// QProcessEnvironment env = QProcessEnvironment::systemEnvironment();
// QString stringPath = QCoreApplication::applicationDirPath();
// env.insert("QT_PLUGIN_PATH", stringPath + "/../plugins");
// klauncher->setProcessEnvironment(env);
klauncher
->
start
(
"kdeinit5"
);
#endif
...
...
kstars/kstarsactions.cpp
View file @
c87f6c2f
...
...
@@ -1513,6 +1513,8 @@ void KStars::slotAboutToQuit()
quit
->
waitForFinished
(
1000
);
quit
->
start
(
"killall kioslave"
);
quit
->
waitForFinished
(
1000
);
quit
->
start
(
"killall kio_http_cache_cleaner"
);
quit
->
waitForFinished
(
1000
);
delete
quit
;
#endif
...
...
kstars/tools/observinglist.cpp
View file @
c87f6c2f
...
...
@@ -218,9 +218,13 @@ ObservingList::ObservingList()
this
,
SLOT
(
slotOALExport
()
)
);
//Add icons to Push Buttons
ui
->
OpenButton
->
setIcon
(
QIcon
::
fromTheme
(
"document-open"
,
QIcon
(
":/icons/breeze/default/document-open.svg"
))
);
ui
->
OpenButton
->
setAttribute
(
Qt
::
WA_LayoutUsesWidgetRect
);
ui
->
SaveButton
->
setIcon
(
QIcon
::
fromTheme
(
"document-save"
,
QIcon
(
":/icons/breeze/default/document-save.svg"
))
);
ui
->
SaveButton
->
setAttribute
(
Qt
::
WA_LayoutUsesWidgetRect
);
ui
->
SaveAsButton
->
setIcon
(
QIcon
::
fromTheme
(
"document-save-as"
,
QIcon
(
":/icons/breeze/default/document-save-as.svg"
))
);
ui
->
SaveAsButton
->
setAttribute
(
Qt
::
WA_LayoutUsesWidgetRect
);
ui
->
WizardButton
->
setIcon
(
QIcon
::
fromTheme
(
"tools-wizard"
,
QIcon
(
":/icons/breeze/default/tools-wizard.svg"
))
);
ui
->
WizardButton
->
setAttribute
(
Qt
::
WA_LayoutUsesWidgetRect
);
ui
->
MiniButton
->
setIcon
(
QIcon
::
fromTheme
(
"view-restore"
,
QIcon
(
":/icons/breeze/default/view-restore.svg"
))
);
noSelection
=
true
;
showScope
=
false
;
...
...
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