Changeset 46

Show
Ignore:
Timestamp:
04/12/06 16:21:10 (3 years ago)
Author:
jordi
Message:

Added an useless status bar. It's prettier this way (yes, silly also)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/gtk/MainView.cxx

    r45 r46  
    148148    createPageView (); 
    149149    gtk_box_pack_start (GTK_BOX (m_MainBox), m_PageViewScroll, TRUE, TRUE, 0); 
     150 
     151    // The status bar don't do anything, yet. But without the application 
     152    // look weird. 
     153    GtkWidget *statusBar = gtk_statusbar_new (); 
     154    gtk_box_pack_start (GTK_BOX (m_MainBox), statusBar, FALSE, FALSE, 0); 
    150155} 
    151156