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
P
Plugin-Slice
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenFlipper-Free
Plugin-Slice
Commits
23370d7e
Commit
23370d7e
authored
Jul 12, 2016
by
Jan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed some sliders not reacting to keys
parent
acae2a9a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
SlicePlugin.cc
SlicePlugin.cc
+2
-2
No files found.
SlicePlugin.cc
View file @
23370d7e
...
...
@@ -97,8 +97,8 @@ void SlicePlugin::initializePlugin(){
connect
(
tool_
->
radioX
,
SIGNAL
(
released
()
),
this
,
SLOT
(
updateSlice
()
)
);
connect
(
tool_
->
radioY
,
SIGNAL
(
released
()
),
this
,
SLOT
(
updateSlice
()
)
);
connect
(
tool_
->
radioZ
,
SIGNAL
(
released
()
),
this
,
SLOT
(
updateSlice
()
)
);
connect
(
tool_
->
posSlider
,
SIGNAL
(
sliderMov
ed
(
int
)
),
this
,
SLOT
(
updateSlice
(
int
)
)
);
connect
(
tool_
->
sizeSlider
,
SIGNAL
(
sliderMov
ed
(
int
)
),
this
,
SLOT
(
updateSlice
(
int
)
)
);
connect
(
tool_
->
posSlider
,
SIGNAL
(
valueChang
ed
(
int
)
),
this
,
SLOT
(
updateSlice
(
int
)
)
);
connect
(
tool_
->
sizeSlider
,
SIGNAL
(
valueChang
ed
(
int
)
),
this
,
SLOT
(
updateSlice
(
int
)
)
);
toolIcon_
=
new
QIcon
(
OpenFlipper
::
Options
::
iconDirStr
()
+
OpenFlipper
::
Options
::
dirSeparator
()
+
"slice.png"
);
emit
addToolbox
(
tr
(
"Slice"
)
,
tool_
,
toolIcon_
);
...
...
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