mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2024-11-10 07:11:54 +00:00
Align Entity Info Dialog
This commit is contained in:
parent
16453c6ac2
commit
d98297759e
2 changed files with 5 additions and 7 deletions
|
@ -1107,7 +1107,7 @@ void DoEntityList(){
|
|||
return;
|
||||
}
|
||||
|
||||
EntityList_dialog = dialog = gtk_dialog_new_with_buttons( _( "Entity Info" ), GTK_WINDOW( g_pParentWnd->m_pWidget ), flags, NULL );
|
||||
EntityList_dialog = dialog = gtk_dialog_new_with_buttons( _( "Entity Info" ), NULL, flags, NULL );
|
||||
gtk_window_set_transient_for( GTK_WINDOW( dialog ), GTK_WINDOW( g_pParentWnd->m_pWidget ) );
|
||||
load_window_pos( dialog, g_PrefsDlg.mWindowInfo.posEntityInfoWnd );
|
||||
|
||||
|
@ -1242,14 +1242,14 @@ void DoEntityList(){
|
|||
}
|
||||
|
||||
hbox2 = gtk_hbox_new( FALSE, 5 );
|
||||
gtk_box_pack_start( GTK_BOX( vbox ), hbox2, TRUE, TRUE, 0 );
|
||||
gtk_box_pack_start( GTK_BOX( vbox ), hbox2, FALSE, FALSE, 0 );
|
||||
gtk_widget_show( hbox2 );
|
||||
|
||||
button = gtk_button_new_with_label( _( "Select" ) );
|
||||
gtk_box_pack_start( GTK_BOX( hbox2 ), button, FALSE, FALSE, 0 );
|
||||
g_signal_connect( G_OBJECT( button ), "clicked",
|
||||
G_CALLBACK( entitylist_select ), dialog );
|
||||
gtk_widget_set_size_request( button, 60, -2 );
|
||||
|
||||
gtk_widget_show( button );
|
||||
|
||||
|
||||
|
|
|
@ -4103,12 +4103,10 @@ inline GtkToolbarChildType gtktoolbarchildtype_for_toolbarbuttontype( IToolbarBu
|
|||
}
|
||||
|
||||
void toolbar_insert( GtkWidget *toolbar, const char* image, const char* text, const char* tooltip, IToolbarButton::EType type, GtkSignalFunc handler, gpointer data ){
|
||||
GtkWidget *w, *pixmap;
|
||||
GdkPixmap *gdkpixmap;
|
||||
GdkBitmap *mask;
|
||||
GtkWidget *pixmap;
|
||||
|
||||
pixmap = new_plugin_image_icon( image );
|
||||
w = gtk_toolbar_append_element( GTK_TOOLBAR( toolbar ), gtktoolbarchildtype_for_toolbarbuttontype( type ), NULL, text, tooltip, "", GTK_WIDGET( pixmap ), handler, data );
|
||||
gtk_toolbar_append_element( GTK_TOOLBAR( toolbar ), gtktoolbarchildtype_for_toolbarbuttontype( type ), NULL, text, tooltip, "", GTK_WIDGET( pixmap ), handler, data );
|
||||
}
|
||||
|
||||
void SignalToolbarButton( GtkWidget *widget, gpointer data ){
|
||||
|
|
Loading…
Reference in a new issue