Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
vite
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
solverstack
vite
Commits
cf0892f9
Commit
cf0892f9
authored
11 months ago
by
ORDRONNEAU Camille
Browse files
Options
Downloads
Patches
Plain Diff
Add comment on bug
parent
c1cd66de
No related branches found
No related tags found
1 merge request
!90
Remove max bound on interval selection
Pipeline
#1011096
passed
11 months ago
Stage: pre
Stage: build
Stage: analyze
Stage: validate
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/interface/Interval_select.cpp
+9
-0
9 additions, 0 deletions
src/interface/Interval_select.cpp
with
9 additions
and
0 deletions
src/interface/Interval_select.cpp
+
9
−
0
View file @
cf0892f9
...
...
@@ -136,6 +136,11 @@ void Interval_select::update_values() {
}
void
Interval_select
::
on_minSpinBox_valueChanged
(
double
value
)
{
/**
* This method can also change the maxSpinBox value on large trace
* This is due to scaled float precision error in the apply_zoom_box function (called by apply_settings)
*/
QPalette
myPalette
(
minSpinBox
->
palette
());
if
(
value
<
maxSpinBox
->
value
())
{
...
...
@@ -165,6 +170,10 @@ void Interval_select::on_minSpinBox_valueChanged(double value) {
}
void
Interval_select
::
on_maxSpinBox_valueChanged
(
double
value
)
{
/**
* This method can also change the minSpinBox value on large trace
* This is due to scaled float precision error in the apply_zoom_box function (called by apply_settings)
*/
QPalette
myPalette
(
minSpinBox
->
palette
());
if
(
value
>
minSpinBox
->
value
())
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment