mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2024-11-09 23:01:55 +00:00
Merge pull request #601 from Pan7/clearCombo
Clear Surface Property combobox on update
This commit is contained in:
commit
84fede3f53
1 changed files with 8 additions and 0 deletions
|
@ -723,12 +723,20 @@ void PatchDialog::GetPatchInfo(){
|
|||
if ( m_Patch != NULL ) {
|
||||
gchar buffer[11];
|
||||
int i;
|
||||
GtkListStore *store;
|
||||
|
||||
m_strName = m_Patch->pShader->getName();
|
||||
|
||||
// fill in the numbers for Row / Col selection
|
||||
m_bListenChanged = false;
|
||||
|
||||
#if GTK_CHECK_VERSION( 3, 0, 0 )
|
||||
gtk_combo_box_text_remove_all( GTK_COMBO_BOX_TEXT( m_pRowCombo ) );
|
||||
#else
|
||||
store = GTK_LIST_STORE( gtk_combo_box_get_model( GTK_COMBO_BOX( m_pRowCombo ) ) );
|
||||
gtk_list_store_clear( store );
|
||||
#endif
|
||||
|
||||
for ( i = 0; i < m_Patch->height; i++ )
|
||||
{
|
||||
g_snprintf( buffer, sizeof( buffer ), "%i", i );
|
||||
|
|
Loading…
Reference in a new issue