Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpenBoard
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lifo
Nicolas Ollinger
OpenBoard
Commits
afb5b654
Commit
afb5b654
authored
6 years ago
by
Clément Fauconnier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
don't move indexes if we're moving an document's page
parent
60b433a6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
7 deletions
+9
-7
UBDocumentController.cpp
src/document/UBDocumentController.cpp
+9
-7
No files found.
src/document/UBDocumentController.cpp
View file @
afb5b654
...
...
@@ -1451,15 +1451,17 @@ void UBDocumentTreeView::dropEvent(QDropEvent *event)
docModel
->
setHighLighted
(
QModelIndex
());
}
if
(
targetIsInTrash
)
else
{
if
(
!
UBApplication
::
mainWindow
->
yesNoQuestion
(
tr
(
"Remove Item"
),
tr
(
"Are you sure you want to remove the selected item(s) ?"
)))
return
;
if
(
targetIsInTrash
)
{
if
(
!
UBApplication
::
mainWindow
->
yesNoQuestion
(
tr
(
"Remove Item"
),
tr
(
"Are you sure you want to remove the selected item(s) ?"
)))
return
;
UBApplication
::
documentController
->
moveIndexesToTrash
(
dropIndex
,
docModel
);
}
else
{
docModel
->
moveIndexes
(
dropIndex
,
targetIndex
);
UBApplication
::
documentController
->
moveIndexesToTrash
(
dropIndex
,
docModel
);
}
else
{
docModel
->
moveIndexes
(
dropIndex
,
targetIndex
);
}
}
expand
(
proxy
->
mapFromSource
(
targetIndex
));
...
...
This diff is collapsed.
Click to expand it.
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