Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
LEFEBVREJP email
radix
Commits
8f918616
Commit
8f918616
authored
Jun 26, 2019
by
LEFEBVREJP email
Browse files
Merge branch 'tableview_update' into 'master'
TableView copy feature skip hidden rows and columns See merge request
!76
parents
e58f7b86
c608b3ea
Pipeline
#61195
passed with stages
in 14 minutes and 33 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
radixwidgets/tableview.cc
View file @
8f918616
...
...
@@ -117,9 +117,13 @@ void TableView::copy()
.
append
(
p
->
separator
);
}
if
(
isRowHidden
(
row
))
continue
;
// add row's cells
for
(
int
i
=
0
;
i
<
cols
.
size
();
i
++
)
{
if
(
isColumnHidden
(
i
))
continue
;
if
(
i
>
0
)
data
.
append
(
p
->
separator
);
// row's data
auto
&
rd
=
cells
[
row
];
...
...
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