Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion SeeSharp.Blazor/Components/HtmlProgressBar.razor
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
border-style: solid;
border-radius: 4px;
display: flex;
align-items: center;">
align-items: center;
z-index: 2000;">

@if(progressBar != null && progressBar.NumWorkDone < progressBar.TotalWork && FunStuff != null) {
<img src="@FunStuff[imageIdx]" height="100px" style="
Expand Down
2 changes: 1 addition & 1 deletion SeeSharp/SceneManagement/SceneLoader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ bool NeedsReimport()
}

var lines = File.ReadAllLines(importFile);
if (lines.Length < 2)
if (lines.Length < 1)
{
Logger.Log(
$"Scene {name}: corrupted import file, reimporting .blend",
Expand Down
Loading