Skip to content

Commit

Permalink
Merge pull request #857 from lottev1991/SetPortraitHeight
Browse files Browse the repository at this point in the history
[Portrait height] Set default int to 0 (no default height if below 800px)
  • Loading branch information
stakira authored Oct 2, 2023
2 parents 05076e4 + 2e0cac1 commit cf57d43
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion OpenUtau.Core/Classic/VoicebankConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public class VoicebankConfig {
public string Image;
public string Portrait;
public float PortraitOpacity = 0.67f;
public int PortraitHeight = 800;
public int PortraitHeight = 0;
public string Author;
public string Voice;
public string Web;
Expand Down
2 changes: 1 addition & 1 deletion OpenUtau.Core/Vogen/VogenSingerLoader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class VogenMeta {
public string avatar;
public string portrait;
public float portraitOpacity = 0.67f;
public int portraitHeight = 800;
public int portraitHeight = 0;
public string web;
public string misc;
}
Expand Down

0 comments on commit cf57d43

Please sign in to comment.