Skip to content

Commit

Permalink
chore(wrapper): change check for os_name to osx
Browse files Browse the repository at this point in the history
  • Loading branch information
rxri committed Sep 7, 2024
1 parent 6a1363a commit d207549
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jsHelper/spicetifyWrapper.js
Original file line number Diff line number Diff line change
Expand Up @@ -1029,7 +1029,7 @@ Spicetify.Events = (() => {
if (typeof isGlobalNavbar !== "undefined" && isGlobalNavbar === "control") {
await Spicetify.CosmosAsync.post("sp://messages/v1/container/control", {
type: "update_titlebar",
height: Spicetify.Platform.PlatformData.os_name === "windows" ? "40" : "42",
height: Spicetify.Platform.PlatformData.os_name === "osx" ? "42" : "40",
});
}
})();
Expand Down

0 comments on commit d207549

Please sign in to comment.