]> git.sesse.net Git - vlc/commitdiff
Disabled my last changes, since they don't seem to work in all cases.
authorOlivier Teulière <ipkiss@videolan.org>
Thu, 8 Apr 2004 21:29:27 +0000 (21:29 +0000)
committerOlivier Teulière <ipkiss@videolan.org>
Thu, 8 Apr 2004 21:29:27 +0000 (21:29 +0000)
modules/gui/skins2/win32/win32_window.cpp

index 4905835e4f80df8631c7d2c2109fb8039f43569f..197417b9be06fff37f4b19a7cacf37adec7eb9f4 100644 (file)
@@ -68,8 +68,8 @@ Win32Window::Win32Window( intf_thread_t *pIntf, GenericWindow &rWindow,
 
     // We do it this way otherwise CreateWindowEx will fail if WS_EX_LAYERED
     // is not supported
-    SetWindowLongPtr( m_hWnd, GWL_EXSTYLE,
-                      GetWindowLong( m_hWnd, GWL_EXSTYLE ) | WS_EX_LAYERED );
+//     SetWindowLongPtr( m_hWnd, GWL_EXSTYLE,
+//                       GetWindowLong( m_hWnd, GWL_EXSTYLE ) | WS_EX_LAYERED );
 
     // Store a pointer to the GenericWindow in a map
     Win32Factory *pFactory = (Win32Factory*)Win32Factory::instance( getIntf() );
@@ -138,6 +138,7 @@ void Win32Window::raise() const
 
 void Win32Window::setOpacity( uint8_t value ) const
 {
+#if 0
     Win32Factory *pFactory = (Win32Factory*)Win32Factory::instance( getIntf() );
 
     if( value == 255 )
@@ -167,6 +168,7 @@ void Win32Window::setOpacity( uint8_t value ) const
     }
 
    UpdateWindow( m_hWnd );
+#endif
 }