Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
einsteinathome
pulsatingscience
Commits
fa0156ac
Commit
fa0156ac
authored
Feb 04, 2009
by
Oliver Bock
Browse files
Ensure scope is updated immediately (don't use event queue!)
parent
ef1356c2
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/pulsatingscience.cpp
View file @
fa0156ac
...
...
@@ -73,13 +73,13 @@ PulsatingScience::PulsatingScience(QWidget *parent) : QMainWindow(parent)
this
,
SLOT
(
updatePulsarSemiMajorAxisValue
(
double
)));
connect
(
ui
.
pulsarGlWidget
,
SIGNAL
(
pulsarAnimationStep
(
float
)),
ui
.
pulseScopeWidget
,
SLOT
(
markerStep
(
float
)));
ui
.
pulseScopeWidget
,
SLOT
(
markerStep
(
float
))
,
Qt
::
DirectConnection
);
connect
(
ui
.
pulsarGlWidget
,
SIGNAL
(
pulsarAnimationReset
()),
ui
.
pulseScopeWidget
,
SLOT
(
markerReset
()));
connect
(
ui
.
pulsarGlWidget
,
SIGNAL
(
pulseProfileUpdated
(
const
QVector
<
float
>&
)),
ui
.
pulseScopeWidget
,
SLOT
(
drawCurve
(
const
QVector
<
float
>&
)));
ui
.
pulseScopeWidget
,
SLOT
(
drawCurve
(
const
QVector
<
float
>&
))
,
Qt
::
DirectConnection
);
}
PulsatingScience
::~
PulsatingScience
()
...
...
Write
Preview
Supports
Markdown
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