Merge pull request #601 from Pan7/clearCombo

Clear Surface Property combobox on update
This commit is contained in:
Timothee "TTimo" Besset 2018-03-24 16:54:59 -04:00 committed by GitHub
commit 84fede3f53
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 );