Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
e0ee5193
Commit
e0ee5193
authored
Dec 22, 2009
by
Erwan Tulou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
skins2(Linux): enable transparency since setOpacity is now available (to be tested)
parent
671bf6f8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
5 deletions
+1
-5
modules/gui/skins2/src/skin_main.cpp
modules/gui/skins2/src/skin_main.cpp
+1
-1
modules/gui/skins2/src/window_manager.cpp
modules/gui/skins2/src/window_manager.cpp
+0
-4
No files found.
modules/gui/skins2/src/skin_main.cpp
View file @
e0ee5193
...
...
@@ -591,9 +591,9 @@ vlc_module_begin ()
SKINS2_SYSTRAY_LONG
,
false
);
add_bool
(
"skins2-taskbar"
,
true
,
onTaskBarChange
,
SKINS2_TASKBAR
,
SKINS2_TASKBAR_LONG
,
false
);
#endif
add_bool
(
"skins2-transparency"
,
false
,
NULL
,
SKINS2_TRANSPARENCY
,
SKINS2_TRANSPARENCY_LONG
,
false
);
#endif
add_bool
(
"skinned-playlist"
,
true
,
NULL
,
SKINS2_PLAYLIST
,
SKINS2_PLAYLIST_LONG
,
false
);
...
...
modules/gui/skins2/src/window_manager.cpp
View file @
e0ee5193
...
...
@@ -71,7 +71,6 @@ void WindowManager::startMove( TopWindow &rWindow )
m_movingWindows
.
clear
();
buildDependSet
(
m_movingWindows
,
&
rWindow
);
#ifdef WIN32
if
(
config_GetInt
(
getIntf
(),
"skins2-transparency"
)
)
{
// Change the opacity of the moving windows
...
...
@@ -89,7 +88,6 @@ void WindowManager::startMove( TopWindow &rWindow )
(
*
it
)
->
refresh
(
0
,
0
,
(
*
it
)
->
getWidth
(),
(
*
it
)
->
getHeight
()
);
}
}
#endif
}
...
...
@@ -98,7 +96,6 @@ void WindowManager::stopMove()
WinSet_t
::
const_iterator
itWin1
,
itWin2
;
AncList_t
::
const_iterator
itAnc1
,
itAnc2
;
#ifdef WIN32
if
(
config_GetInt
(
getIntf
(),
"skins2-transparency"
)
)
{
// Restore the opacity of the moving windows
...
...
@@ -108,7 +105,6 @@ void WindowManager::stopMove()
(
*
it
)
->
setOpacity
(
m_alpha
);
}
}
#endif
// Delete the dependencies
m_dependencies
.
clear
();
...
...
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