mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-28 02:30:05 +00:00
Added a new LookAndFeel (V4) and re-skinned the JUCE Demo and examples. Improved the JUCE Demo on mobile devices.
This commit is contained in:
parent
3b422bef51
commit
ef2c63e4e3
99 changed files with 5037 additions and 433 deletions
|
|
@ -770,13 +770,11 @@ public:
|
|||
return items.size();
|
||||
}
|
||||
|
||||
void paintListBoxItem (int row, Graphics& g, int width, int height, bool rowIsSelected) override
|
||||
void paintListBoxItem (int row, Graphics& g, int width, int height, bool) override
|
||||
{
|
||||
if (isPositiveAndBelow (row, items.size()))
|
||||
{
|
||||
if (rowIsSelected)
|
||||
g.fillAll (findColour (TextEditor::highlightColourId)
|
||||
.withMultipliedAlpha (0.3f));
|
||||
g.fillAll (findColour (ListBox::backgroundColourId));
|
||||
|
||||
const String item (items [row]);
|
||||
bool enabled = false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue