mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Introjucer: graphical tweaks, binary data header change.
This commit is contained in:
parent
af3bab799f
commit
49d0182f61
16 changed files with 72 additions and 100 deletions
|
|
@ -138,7 +138,7 @@ ProjectContentComponent::~ProjectContentComponent()
|
|||
|
||||
void ProjectContentComponent::paint (Graphics& g)
|
||||
{
|
||||
g.fillAll (findColour (mainBackgroundColourId));
|
||||
dynamic_cast<IntrojucerLookAndFeel&> (getLookAndFeel()).fillWithBackgroundTexture (g);
|
||||
}
|
||||
|
||||
void ProjectContentComponent::paintOverChildren (Graphics& g)
|
||||
|
|
@ -176,11 +176,6 @@ void ProjectContentComponent::resized()
|
|||
|
||||
void ProjectContentComponent::lookAndFeelChanged()
|
||||
{
|
||||
const Colour tabColour (findColour (mainBackgroundColourId));
|
||||
|
||||
for (int i = treeViewTabs.getNumTabs(); --i >= 0;)
|
||||
treeViewTabs.setTabBackgroundColour (i, tabColour);
|
||||
|
||||
repaint();
|
||||
}
|
||||
|
||||
|
|
@ -252,7 +247,7 @@ void ProjectContentComponent::setProject (Project* newProject)
|
|||
void ProjectContentComponent::createProjectTabs()
|
||||
{
|
||||
jassert (project != nullptr);
|
||||
const Colour tabColour (findColour (mainBackgroundColourId));
|
||||
const Colour tabColour (Colours::transparentBlack);
|
||||
|
||||
treeViewTabs.addTab ("Files", tabColour, new FileTreeTab (*project), true);
|
||||
treeViewTabs.addTab ("Config", tabColour, new ConfigTreeTab (*project), true);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue