Moved menu entry "Gparted->Show Features" to "View->File System Support"
svn path=/trunk/; revision=964
This commit is contained in:
parent
5b8c16ba60
commit
75a03f157f
|
@ -1,3 +1,8 @@
|
||||||
|
2008-11-14 Curtis Gedak <gedakc@gmail.com>
|
||||||
|
|
||||||
|
* src/Win_GParted.cc: Moved menu entry
|
||||||
|
- "Gparted->Show Features" moved to "View->File System Support".
|
||||||
|
|
||||||
2008-11-13 Curtis Gedak <gedakc@gmail.com>
|
2008-11-13 Curtis Gedak <gedakc@gmail.com>
|
||||||
|
|
||||||
* include/FS_Info.h,
|
* include/FS_Info.h,
|
||||||
|
|
|
@ -141,9 +141,6 @@ void Win_GParted::init_menubar()
|
||||||
image = manage( new Gtk::Image( Gtk::Stock::HARDDISK, Gtk::ICON_SIZE_MENU ) );
|
image = manage( new Gtk::Image( Gtk::Stock::HARDDISK, Gtk::ICON_SIZE_MENU ) );
|
||||||
menu ->items() .push_back( Gtk::Menu_Helpers::ImageMenuElem( _("_Devices"), *image ) ) ;
|
menu ->items() .push_back( Gtk::Menu_Helpers::ImageMenuElem( _("_Devices"), *image ) ) ;
|
||||||
|
|
||||||
menu ->items() .push_back( Gtk::Menu_Helpers::SeparatorElem( ) );
|
|
||||||
menu ->items() .push_back( Gtk::Menu_Helpers::MenuElem(
|
|
||||||
_("_Show Features"), sigc::mem_fun( *this, &Win_GParted::menu_gparted_features ) ) );
|
|
||||||
menu ->items() .push_back( Gtk::Menu_Helpers::SeparatorElem( ) );
|
menu ->items() .push_back( Gtk::Menu_Helpers::SeparatorElem( ) );
|
||||||
menu ->items() .push_back( Gtk::Menu_Helpers::StockMenuElem(
|
menu ->items() .push_back( Gtk::Menu_Helpers::StockMenuElem(
|
||||||
Gtk::Stock::QUIT, sigc::mem_fun(*this, &Win_GParted::menu_gparted_quit) ) );
|
Gtk::Stock::QUIT, sigc::mem_fun(*this, &Win_GParted::menu_gparted_quit) ) );
|
||||||
|
@ -176,6 +173,10 @@ void Win_GParted::init_menubar()
|
||||||
_("Pending _Operations"), sigc::mem_fun(*this, &Win_GParted::menu_view_operations) ) );
|
_("Pending _Operations"), sigc::mem_fun(*this, &Win_GParted::menu_view_operations) ) );
|
||||||
menubar_main .items() .push_back( Gtk::Menu_Helpers::MenuElem( _("_View"), *menu ) );
|
menubar_main .items() .push_back( Gtk::Menu_Helpers::MenuElem( _("_View"), *menu ) );
|
||||||
|
|
||||||
|
menu ->items() .push_back( Gtk::Menu_Helpers::SeparatorElem( ) );
|
||||||
|
menu ->items() .push_back( Gtk::Menu_Helpers::MenuElem(
|
||||||
|
_("_File System Support"), sigc::mem_fun( *this, &Win_GParted::menu_gparted_features ) ) );
|
||||||
|
|
||||||
//device
|
//device
|
||||||
menu = manage( new Gtk::Menu() ) ;
|
menu = manage( new Gtk::Menu() ) ;
|
||||||
menu ->items() .push_back( Gtk::Menu_Helpers::MenuElem( Glib::ustring( _("_Create Partition Table") ) + " ...",
|
menu ->items() .push_back( Gtk::Menu_Helpers::MenuElem( Glib::ustring( _("_Create Partition Table") ) + " ...",
|
||||||
|
|
Loading…
Reference in New Issue