Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
visimpl
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SimVisSuite
visimpl
Commits
c78390f7
Commit
c78390f7
authored
6 years ago
by
Sergio Galindo
Browse files
Options
Downloads
Patches
Plain Diff
Improved gid lists performance. Fixed GUI small issues.
parent
1fd70a62
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
visimpl/MainWindow.cpp
+1
-1
1 addition, 1 deletion
visimpl/MainWindow.cpp
visimpl/SelectionManagerWidget.cpp
+5
-1
5 additions, 1 deletion
visimpl/SelectionManagerWidget.cpp
with
6 additions
and
2 deletions
visimpl/MainWindow.cpp
+
1
−
1
View file @
c78390f7
...
...
@@ -774,7 +774,7 @@ namespace visimpl
QGroupBox
*
selFunctionGB
=
new
QGroupBox
(
"Current selection"
);
QHBoxLayout
*
selLayout
=
new
QHBoxLayout
(
);
selLayout
->
setAlignment
(
Qt
::
AlignTop
);
selLayout
->
addWidget
(
new
QLabel
(
"S
election s
ize: "
));
selLayout
->
addWidget
(
new
QLabel
(
"Size: "
));
selLayout
->
addWidget
(
_selectionSizeLabel
);
selLayout
->
addWidget
(
buttonSelectionManager
);
selLayout
->
addWidget
(
_addGroupButton
);
...
...
This diff is collapsed.
Click to expand it.
visimpl/SelectionManagerWidget.cpp
+
5
−
1
View file @
c78390f7
...
...
@@ -88,8 +88,11 @@ namespace visimpl
_listViewAvailable
=
new
QListView
(
);
_listViewAvailable
->
setSelectionMode
(
QAbstractItemView
::
ExtendedSelection
);
_listViewAvailable
->
setUniformItemSizes
(
true
);
_listViewSelected
=
new
QListView
(
);
_listViewSelected
->
setSelectionMode
(
QAbstractItemView
::
ExtendedSelection
);
_listViewSelected
->
setUniformItemSizes
(
true
);
_modelAvailable
=
new
QStandardItemModel
(
);
_modelSelected
=
new
QStandardItemModel
(
);
...
...
@@ -406,7 +409,8 @@ namespace visimpl
tr
(
"Text files (.txt);;All files (*)"
),
nullptr
,
QFileDialog
::
DontUseNativeDialog
);
_lineEditFilePath
->
setText
(
path
);
if
(
!
path
.
isEmpty
(
))
_lineEditFilePath
->
setText
(
path
);
}
void
SelectionManagerWidget
::
_buttonSaveClicked
(
void
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
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