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
Merge requests
!102
Fix interval select display
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix interval select display
cordronn/vite:fix/interval-select
into
master
Overview
8
Commits
5
Pipelines
6
Changes
11
Merged
ORDRONNEAU Camille
requested to merge
cordronn/vite:fix/interval-select
into
master
11 months ago
Overview
8
Commits
5
Pipelines
6
Changes
11
Expand
These commits fix :
IntervalSelect not updating when adding or removing a trace
filenames being too short which could lead to confusion when opening files with the same name
Edited
10 months ago
by
Philippe SWARTVAGHER
0
0
Merge request reports
Compare
master
version 5
da8b3fcd
11 months ago
version 4
59cae52d
11 months ago
version 3
52d19fbd
11 months ago
version 2
bf9d80d0
11 months ago
version 1
1333117c
11 months ago
master (base)
and
latest version
latest version
01926705
5 commits,
10 months ago
version 5
da8b3fcd
5 commits,
11 months ago
version 4
59cae52d
5 commits,
11 months ago
version 3
52d19fbd
5 commits,
11 months ago
version 2
bf9d80d0
5 commits,
11 months ago
version 1
1333117c
5 commits,
11 months ago
11 files
+
169
−
45
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
11
Search (e.g. *.vue) (Ctrl+P)
src/core/Core.cpp
+
2
−
1
Options
@@ -370,7 +370,8 @@ Trace *Core::build_trace(const std::string &filename, bool is_state_splitting) {
return
nullptr
;
}
Trace
*
trace
=
new
Trace
(
filename
);
QFileInfo
filepath
(
QString
::
fromStdString
(
filename
));
Trace
*
trace
=
new
Trace
(
filepath
.
absoluteFilePath
().
toStdString
());
#if defined(USE_ITC) && defined(BOOST_SERIALIZE)
if
(
Info
::
Splitter
::
path
.
empty
())
Loading