fix width for a menuentry, added too much space

This commit is contained in:
akir 2004-09-01 07:53:45 +00:00
parent efcca46a83
commit b12ce691bc
2 changed files with 5 additions and 2 deletions

View file

@ -1,5 +1,8 @@
(Format: Year/Month/Day)
Changes for 0.9.10:
*04/09/01:
* Fix width of a menuentry (Mathias)
FbTk/MenuItem.cc
*04/08/31:
* Fixed restart issue with system tray (Henrik)
SystemTray.cc

View file

@ -19,7 +19,7 @@
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
// $Id: MenuItem.cc,v 1.6 2004/08/29 08:33:13 rathnor Exp $
// $Id: MenuItem.cc,v 1.7 2004/09/01 07:53:45 akir Exp $
#include "MenuItem.hh"
#include "Command.hh"
@ -247,7 +247,7 @@ unsigned int MenuItem::width(const MenuTheme &theme) const {
if (m_icon.get() == 0)
return normal;
else
return normal + 2 * (theme.bevelWidth() + height(theme));
return normal + height(theme);
}