PR# 18247 Buttons with a single character text do not dispaly properly in GTK implementation

Problem Report Summary
Submitter: finnianr
Category: EiffelVision
Priority: Low
Date: 2012/07/02
Class: Bug
Severity: Non-critical
Number: 18247
Release: 7.1.8.8986
Confidential: No
Status: Open
Responsible: misterieking
Environment: Ubuntu Linux 10.10 x86_64; gcc 4.4.5
Synopsis: Buttons with a single character text do not dispaly properly in GTK implementation

Description
Buttons with a single character text do not have the correct minimum width to show the character. The text is invisible. This is a regression of 7.0
To Reproduce
    local
            hbox: EV_HORIZONTAL_BOX
            button: EV_BUTTON
        do
            create hbox
            create button.make_with_text ("A")
            hbox.extend (button)
            hbox.disable_item_expand (button)
            hbox.extend (create {EV_CELL})
            extend (hbox)
        end
Problem Report Interactions