Skip to content

Commit

Permalink
Remove extension
Browse files Browse the repository at this point in the history
  • Loading branch information
zorikon committed Apr 12, 2024
1 parent 1ba2386 commit 4d9221d
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 34 deletions.
4 changes: 0 additions & 4 deletions Whisky.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
6365C4C32B1AA8CD00AAE1FD /* BottleListEntry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6365C4C22B1AA8CD00AAE1FD /* BottleListEntry.swift */; };
63FFDE862ADF0C7700178665 /* BottomBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 63FFDE852ADF0C7700178665 /* BottomBar.swift */; };
6763D8F62BC6314100651D27 /* Constants.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6763D8F52BC6314100651D27 /* Constants.swift */; };
6763D8F82BC632A800651D27 /* View+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6763D8F72BC632A800651D27 /* View+Extension.swift */; };
67D278512BC5907E006F9A1E /* ActionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67D278502BC5907E006F9A1E /* ActionView.swift */; };
6E064B1229DD32A200D9A2D2 /* Sparkle in Frameworks */ = {isa = PBXBuildFile; productRef = 6E064B1129DD32A200D9A2D2 /* Sparkle */; };
6E064B1429DD331F00D9A2D2 /* SparkleView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6E064B1329DD331F00D9A2D2 /* SparkleView.swift */; };
Expand Down Expand Up @@ -116,7 +115,6 @@
6365C4C22B1AA8CD00AAE1FD /* BottleListEntry.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BottleListEntry.swift; sourceTree = "<group>"; };
63FFDE852ADF0C7700178665 /* BottomBar.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BottomBar.swift; sourceTree = "<group>"; };
6763D8F52BC6314100651D27 /* Constants.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Constants.swift; sourceTree = "<group>"; };
6763D8F72BC632A800651D27 /* View+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "View+Extension.swift"; sourceTree = "<group>"; };
67D278502BC5907E006F9A1E /* ActionView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ActionView.swift; sourceTree = "<group>"; };
6E064B1329DD331F00D9A2D2 /* SparkleView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SparkleView.swift; sourceTree = "<group>"; };
6E17B6452AF3FDC100831173 /* PinView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PinView.swift; sourceTree = "<group>"; };
Expand Down Expand Up @@ -206,7 +204,6 @@
children = (
6E40498229CCA91B006E3F1B /* Bottle+Extensions.swift */,
6365C4C02B1AA69D00AAE1FD /* Animation+Extensions.swift */,
6763D8F72BC632A800651D27 /* View+Extension.swift */,
);
path = Extensions;
sourceTree = "<group>";
Expand Down Expand Up @@ -600,7 +597,6 @@
6E355E5829D78249002D83BE /* ConfigView.swift in Sources */,
63FFDE862ADF0C7700178665 /* BottomBar.swift in Sources */,
6E6C0CF62A419A8300356232 /* WhiskyWineDownloadView.swift in Sources */,
6763D8F82BC632A800651D27 /* View+Extension.swift in Sources */,
6365C4C32B1AA8CD00AAE1FD /* BottleListEntry.swift in Sources */,
6E50D98529CDF25B008C39F6 /* BottleCreationView.swift in Sources */,
6E182FCA2B0BF64E00AADE81 /* WinetricksView.swift in Sources */,
Expand Down
25 changes: 0 additions & 25 deletions Whisky/Extensions/View+Extension.swift

This file was deleted.

2 changes: 1 addition & 1 deletion Whisky/Views/Bottle/BottleCreationView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ struct BottleCreationView: View {
submit()
}
}
.fixedVerticalSize()
.fixedSize(horizontal: false, vertical: true)
.frame(width: ViewWidth.small)
}

Expand Down
2 changes: 1 addition & 1 deletion Whisky/Views/Bottle/Pins/PinCreationView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ struct PinCreationView: View {
submit()
}
}
.fixedVerticalSize()
.fixedSize(horizontal: false, vertical: true)
.frame(minWidth: ViewWidth.small)
}

Expand Down
2 changes: 1 addition & 1 deletion Whisky/Views/Common/RenameView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ struct RenameView: View {
submit()
}
}
.fixedVerticalSize()
.fixedSize(horizontal: false, vertical: true)
.frame(minWidth: ViewWidth.small)
}

Expand Down
2 changes: 1 addition & 1 deletion Whisky/Views/FileOpenView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ struct FileOpenView: View {
}
}
}
.fixedVerticalSize()
.fixedSize(horizontal: false, vertical: true)
.frame(width: ViewWidth.small)
.onAppear {
// Makes sure there are more than 0 bottles.
Expand Down
2 changes: 1 addition & 1 deletion Whisky/Views/Settings/SettingsView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ struct SettingsView: View {
}
}
.formStyle(.grouped)
.fixedVerticalSize()
.fixedSize(horizontal: false, vertical: true)
.frame(width: ViewWidth.medium)
}
}
Expand Down

0 comments on commit 4d9221d

Please sign in to comment.