Changeset b8187c5d6d94e71e4bdce2dbbb13dd6bb6a0b37c

Show
Ignore:
Timestamp:
11/11/09 18:05:01 (4 years ago)
Author:
Benjamin Herr <ben@…>
Parents:
d1c52e51e82c8c76bfaea3ed2974c967ab389a20
Children:
5286ca6fd87202d25b35e26a7d1239f8a33e516a
git-committer:
Benjamin Herr <ben@0x539.de> / 2009-11-11T18:05:01Z+0100
Message:

statusbar: manually add "close" button to popup

2009-11-10 Benjamin Herr <ben@…>

  • code/core/statusbar.cpp: Manually add a "Close" button to the status bar message dialog because RESPONSE_CLOSE seems to add a "Cancel" button instead for some people (Gabríel).
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • ChangeLog

    rd1c52e5 rb8187c5  
     12009-11-10  Benjamin Herr  <ben@0x539.de> 
     2 
     3        * code/core/statusbar.cpp: Manually add a "Close" button to the status 
     4        bar message dialog because RESPONSE_CLOSE seems to add a "Cancel" 
     5        button instead for some people (Gabríel). 
     6 
    172009-11-10  Gabríel A. Pétursson  <gabrielp@simnet.is> 
    28 
  • code/core/statusbar.cpp

    r6ae4279 rb8187c5  
    6868                        false, 
    6969                        Gtk::MESSAGE_ERROR, 
    70                         Gtk::BUTTONS_CLOSE, 
     70                        Gtk::BUTTONS_NONE, 
    7171                        false); 
     72 
     73                dialog->add_button(Gtk::Stock::CLOSE, Gtk::RESPONSE_CLOSE); 
    7274 
    7375                dialog->set_secondary_text(m_detail_desc, true);