From 9341f15c5f6a7c1f618d07d6d88903f22f46217a Mon Sep 17 00:00:00 2001 From: ed Date: Thu, 15 Mar 2018 10:26:10 +0000 Subject: [PATCH] Projucer: Fixed a recursive bug that could occur when editing the text in FilePathPropertyComponent --- .../UI/PropertyComponents/jucer_FilePathPropertyComponent.h | 1 - 1 file changed, 1 deletion(-) diff --git a/extras/Projucer/Source/Utility/UI/PropertyComponents/jucer_FilePathPropertyComponent.h b/extras/Projucer/Source/Utility/UI/PropertyComponents/jucer_FilePathPropertyComponent.h index 5749986421..26eb88ea65 100644 --- a/extras/Projucer/Source/Utility/UI/PropertyComponents/jucer_FilePathPropertyComponent.h +++ b/extras/Projucer/Source/Utility/UI/PropertyComponents/jucer_FilePathPropertyComponent.h @@ -68,7 +68,6 @@ private: textbox.getTextValue().referTo (value); textbox.onReturnKey = [this] { updateEditorColour (textbox); }; textbox.onFocusLost = [this] { updateEditorColour (textbox); }; - textbox.onTextChange = [this] { updateEditorColour (textbox); }; addAndMakeVisible (button); button.onClick = [this] { browse(); };