From 2fed2af66981a859307524f0d1b0161b6f3b16dc Mon Sep 17 00:00:00 2001 From: ed Date: Thu, 14 Sep 2017 11:56:47 +0100 Subject: [PATCH] Updated the documentation in ProgressBar to reflect the circular, spinning ProgressBar that was added in LookAndFeel_V4 --- modules/juce_gui_basics/widgets/juce_ProgressBar.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/juce_gui_basics/widgets/juce_ProgressBar.h b/modules/juce_gui_basics/widgets/juce_ProgressBar.h index 8837fdff00..c4f5123b25 100644 --- a/modules/juce_gui_basics/widgets/juce_ProgressBar.h +++ b/modules/juce_gui_basics/widgets/juce_ProgressBar.h @@ -35,6 +35,10 @@ namespace juce to keep an eye on a variable that you give it, and will automatically redraw itself when the variable changes. + If using LookAndFeel_V4 a circular spinning progress bar will be drawn if + the width and height of the ProgressBar are equal, otherwise the standard, + linear ProgressBar will be drawn. + For an easy way of running a background task with a dialog box showing its progress, see the ThreadWithProgressWindow class.