ENH: The cache is not saved now after every modification of the GUI

This commit is contained in:
Luis Ibanez 2001-06-21 09:56:59 -04:00
parent cca4d06686
commit f7b22c332f
1 changed files with 0 additions and 5 deletions

View File

@ -230,7 +230,6 @@ NameButtonCallback( Fl_Widget * widget, void * data)
// Redraw the list // Redraw the list
grandParentGroup->redraw(); grandParentGroup->redraw();
SaveCacheFromGUI();
return; return;
} }
@ -276,7 +275,6 @@ CheckButtonCallback( Fl_Widget * widget, void * data)
} }
button->redraw(); button->redraw();
SaveCacheFromGUI();
} }
@ -291,7 +289,6 @@ InputTextCallback( Fl_Widget * widget, void * data)
item->m_curValue = input->value(); item->m_curValue = input->value();
SaveCacheFromGUI();
} }
@ -324,7 +321,6 @@ ColorSelectionCallback( Fl_Widget * widget, void * data)
colorButton->redraw(); colorButton->redraw();
SaveCacheFromGUI();
} }
@ -350,7 +346,6 @@ BrowsePathCallback( Fl_Widget * widget, void * data)
inputText->value( newpath ); inputText->value( newpath );
} }
SaveCacheFromGUI();
} }