Skip to content

Commit

Permalink
Fixed #81
Browse files Browse the repository at this point in the history
  • Loading branch information
yasirkula committed Apr 1, 2023
1 parent 95dafd5 commit e6e0669
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Plugins/SimpleFileBrowser/README.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
= Simple File Browser (v1.5.9) =
= Simple File Browser (v1.6.0) =

Online documentation & example code available at: https://github.com/yasirkula/UnitySimpleFileBrowser
E-mail: [email protected]
Expand Down
9 changes: 6 additions & 3 deletions Plugins/SimpleFileBrowser/Scripts/FileBrowser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1245,9 +1245,12 @@ private void RefreshSkin()
upButton.image.sprite = m_skin.HeaderUpButton;
moreOptionsButton.image.sprite = m_skin.HeaderContextMenuButton;

Image windowResizeGizmo = resizeCursorHandler.GetComponent<Image>();
windowResizeGizmo.color = m_skin.WindowResizeGizmoColor;
windowResizeGizmo.sprite = m_skin.WindowResizeGizmo;
if( resizeCursorHandler )
{
Image windowResizeGizmo = resizeCursorHandler.GetComponent<Image>();
windowResizeGizmo.color = m_skin.WindowResizeGizmoColor;
windowResizeGizmo.sprite = m_skin.WindowResizeGizmo;
}

m_skin.ApplyTo( filenameInputField );
m_skin.ApplyTo( pathInputField );
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "com.yasirkula.simplefilebrowser",
"displayName": "Simple File Browser",
"version": "1.5.9",
"version": "1.6.0",
"documentationUrl": "https://github.com/yasirkula/UnitySimpleFileBrowser",
"changelogUrl": "https://github.com/yasirkula/UnitySimpleFileBrowser/releases",
"licensesUrl": "https://github.com/yasirkula/UnitySimpleFileBrowser/blob/master/LICENSE.txt",
Expand Down

0 comments on commit e6e0669

Please sign in to comment.