diff options
author | McCabe Maxsted | 2010-05-23 15:17:19 -0700 |
---|---|---|
committer | Jacek Antonelli | 2010-06-19 02:42:58 -0500 |
commit | fd1b7eea67273df41bde0b6af2df4b3cb8b302de (patch) | |
tree | 15c149d26e4c9d69e65a3ff23d55c495f793ee02 /linden/indra/llui/llspinctrl.cpp | |
parent | autofetch artwork also on linux64 (diff) | |
download | meta-impy-fd1b7eea67273df41bde0b6af2df4b3cb8b302de.zip meta-impy-fd1b7eea67273df41bde0b6af2df4b3cb8b302de.tar.gz meta-impy-fd1b7eea67273df41bde0b6af2df4b3cb8b302de.tar.bz2 meta-impy-fd1b7eea67273df41bde0b6af2df4b3cb8b302de.tar.xz |
Fixed #295: spinners in the build tools aren't updating after their contents are deleted
Diffstat (limited to '')
-rw-r--r-- | linden/indra/llui/llspinctrl.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/linden/indra/llui/llspinctrl.cpp b/linden/indra/llui/llspinctrl.cpp index 760fbfd..7eccaca 100644 --- a/linden/indra/llui/llspinctrl.cpp +++ b/linden/indra/llui/llspinctrl.cpp | |||
@@ -325,6 +325,11 @@ void LLSpinCtrl::onEditorCommit( LLUICtrl* caller, void *userdata ) | |||
325 | success = TRUE; | 325 | success = TRUE; |
326 | } | 326 | } |
327 | } | 327 | } |
328 | else | ||
329 | { | ||
330 | // We want to update the editor in case it fails while blanking -- MC | ||
331 | success = TRUE; | ||
332 | } | ||
328 | 333 | ||
329 | if( success ) | 334 | if( success ) |
330 | { | 335 | { |