Skip to content

Commit

Permalink
icon moving folders
Browse files Browse the repository at this point in the history
  • Loading branch information
PicklesMcPickle committed May 3, 2021
1 parent 0a008c4 commit dac427e
Show file tree
Hide file tree
Showing 37 changed files with 6 additions and 6 deletions.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
2 changes: 1 addition & 1 deletion guiEditor/src/components/commandBarComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export class CommandBarComponent extends React.Component<ICommandBarComponentPro
return (
<div className={"commands "}>
<div className="commands-left">
<img src={"../imgs/babylonLogo.svg"} color="white" className={"active"} />
<img src={"./imgs/babylonLogo.svg"} color="white" className={"active"} />
<CommandDropdownComponent globalState={this.props.globalState} icon="hamburgerIcon" tooltip="Options" items={[
{
label: "Save",
Expand Down
2 changes: 1 addition & 1 deletion guiEditor/src/components/commandButtonComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export class CommandButtonComponent extends React.Component<ICommandButtonCompon
return (
<div className="command-button" onClick={this.props.onClick} title={this.props.tooltip + (this.props.shortcut ? "\n" + this.props.shortcut : "")}>
<div className="command-button-icon">
<img src={"../imgs/" + this.props.icon + ".svg"} color="white" className={this.props.isActive ? "active" : ""}/>
<img src={"./imgs/" + this.props.icon + ".svg"} color="white" className={this.props.isActive ? "active" : ""}/>
</div>
<div className="command-label">
{this.props.tooltip}
Expand Down
2 changes: 1 addition & 1 deletion guiEditor/src/components/commandDropdownComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export class CommandDropdownComponent extends React.Component<ICommandDropdownCo
{
this.props.icon &&
<div className="command-dropdown-icon">
<img src={"../imgs/" + this.props.icon + ".svg"}/>
<img src={"./imgs/" + this.props.icon + ".svg"}/>
</div>
}
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ export class ControlTreeItemComponent extends React.Component<IControlTreeItemCo
<div className="controlTools" onMouseOut={ () => this.setState({ isHovered: false})}>
<TreeItemLabelComponent label={name} onClick={() => this.props.onClick()} color="greenyellow" />
<div className="addComponent icon" onClick={() => this.highlight()} title="Add component (Not Implemented)">
<img src={"../imgs/makeComponentIcon.svg"} color="black" className=""/>
<img src={"./imgs/makeComponentIcon.svg"} color="black" className=""/>
</div>
<div className="visibility icon" onClick={() => this.switchVisibility()} title="Show/Hide control">
<img src={"../imgs/visibilityIcon.svg"} color="black" className=""/>
<img src={"./imgs/visibilityIcon.svg"} color="black" className=""/>
</div>
<ExtensionsComponent target={control} extensibilityGroups={this.props.extensibilityGroups} />
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export class TreeItemComponent extends React.Component<ITreeItemComponentProps,
constructor(props: ITreeItemComponentProps) {
super(props);

this.state = { isExpanded: false, mustExpand: false };
this.state = { isExpanded: true, mustExpand: true };
}

switchExpandedState(): void {
Expand Down

0 comments on commit dac427e

Please sign in to comment.