Commit a248ca40 authored by Gildas Bazin's avatar Gildas Bazin

* modules/gui/wxwindows/interface.cpp: better heuristic for the interface size on win32.

parent 0e282e77
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* interface.cpp : wxWindows plugin for vlc * interface.cpp : wxWindows plugin for vlc
***************************************************************************** *****************************************************************************
* Copyright (C) 2000-2001, 2003 VideoLAN * Copyright (C) 2000-2001, 2003 VideoLAN
* $Id: interface.cpp,v 1.78 2003/12/14 15:42:19 gbazin Exp $ * $Id: interface.cpp,v 1.79 2003/12/16 13:22:51 gbazin Exp $
* *
* Authors: Gildas Bazin <gbazin@netcourrier.com> * Authors: Gildas Bazin <gbazin@netcourrier.com>
* *
...@@ -439,11 +439,8 @@ void Interface::CreateOurToolBar() ...@@ -439,11 +439,8 @@ void Interface::CreateOurToolBar()
#ifndef WIN32 #ifndef WIN32
frame_sizer->SetMinSize( toolbar_sizer->GetMinSize().GetWidth(), -1 ); frame_sizer->SetMinSize( toolbar_sizer->GetMinSize().GetWidth(), -1 );
#else #else /* That sucks but for some reason it works better */
frame_sizer->SetMinSize( toolbar->GetToolSize().GetWidth() * 11 + frame_sizer->SetMinSize( toolbar_sizer->GetMinSize().GetWidth()*2/3, -1 );
toolbar->GetToolSeparation() * 3 +
(toolbar->GetMargins().GetWidth() + 2) *
toolbar->GetToolsCount(), -1 );
#endif #endif
#if !defined(__WXX11__) #if !defined(__WXX11__)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment