Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
52b528be
Commit
52b528be
authored
Jul 20, 2009
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: customize dialogs, fix a misswrite with the last item of a toolbar.
parent
e5454831
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
7 deletions
+9
-7
modules/gui/qt4/dialogs/toolbar.cpp
modules/gui/qt4/dialogs/toolbar.cpp
+9
-7
No files found.
modules/gui/qt4/dialogs/toolbar.cpp
View file @
52b528be
...
...
@@ -498,6 +498,10 @@ void DroppingController::createAndAddWidget( QBoxLayout *controlLayout,
buttonType_e
i_type
,
int
i_option
)
{
doubleInt
*
value
=
new
doubleInt
;
value
->
i_type
=
i_type
;
value
->
i_option
=
i_option
;
/* Special case for SPACERS, who aren't QWidgets */
if
(
i_type
==
WIDGET_SPACER
||
i_type
==
WIDGET_SPACER_EXTEND
)
{
...
...
@@ -567,10 +571,6 @@ void DroppingController::createAndAddWidget( QBoxLayout *controlLayout,
/* QList and QBoxLayout don't act the same with insert() */
if
(
i_index
<
0
)
i_index
=
controlLayout
->
count
()
-
1
;
/* Insert in the value listing */
doubleInt
*
value
=
new
doubleInt
;
value
->
i_type
=
i_type
;
value
->
i_option
=
i_option
;
widgetList
.
insert
(
i_index
,
value
);
}
...
...
@@ -739,12 +739,14 @@ bool DroppingController::eventFilter( QObject *obj, QEvent *event )
QDrag
*
drag
=
new
QDrag
(
widg
);
drag
->
setMimeData
(
mimeData
);
/* Remove before the drag to not mess DropEvent,
that will createAndAddWidget */
widgetList
.
removeAt
(
i
);
/* Start the effective drag */
drag
->
exec
(
Qt
::
CopyAction
|
Qt
::
MoveAction
,
Qt
::
MoveAction
);
widgetList
.
removeAt
(
i
);
controlLayout
->
removeWidget
(
widg
);
widg
->
hide
();
controlLayout
->
removeWidget
(
widg
);
b_draging
=
false
;
}
return
true
;
...
...
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