Skip to content

Commit

Permalink
Merge branch 'main' into feat/chatGPTcomplement
Browse files Browse the repository at this point in the history
  • Loading branch information
nyanko3141592 committed Oct 1, 2024
2 parents 5dd0b57 + 49a8745 commit ea6d762
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion azooKeyMac.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
55A27D022BAAADDB00512DCD /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 55A27D002BAAADDB00512DCD /* InfoPlist.strings */; };
55A9C54B2BA847A1007F6F02 /* main@2x.tiff in Resources */ = {isa = PBXBuildFile; fileRef = 55A9C54A2BA847A1007F6F02 /* main@2x.tiff */; };
55A9C54E2BA84951007F6F02 /* NSRange.swift in Sources */ = {isa = PBXBuildFile; fileRef = 55A9C54D2BA84951007F6F02 /* NSRange.swift */; };
55CE92532C9FC08100C38E1B /* UserDictionaryEditorWindow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 55CE92522C9FC08100C38E1B /* UserDictionaryEditorWindow.swift */; };
55E0A5BE2BA8AE3200FACF50 /* KanaKanjiConverterModuleWithDefaultDictionary in Frameworks */ = {isa = PBXBuildFile; productRef = 55E0A5BD2BA8AE3200FACF50 /* KanaKanjiConverterModuleWithDefaultDictionary */; };
55E0A5C02BA8AE3200FACF50 /* SwiftUtils in Frameworks */ = {isa = PBXBuildFile; productRef = 55E0A5BF2BA8AE3200FACF50 /* SwiftUtils */; };
55EA62E22BD6BF900056B5BA /* ConfigWindow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 55EA62E12BD6BF900056B5BA /* ConfigWindow.swift */; };
Expand Down Expand Up @@ -87,6 +88,7 @@
55A27D012BAAADDB00512DCD /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
55A9C54A2BA847A1007F6F02 /* main@2x.tiff */ = {isa = PBXFileReference; lastKnownFileType = image.tiff; path = "main@2x.tiff"; sourceTree = "<group>"; };
55A9C54D2BA84951007F6F02 /* NSRange.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NSRange.swift; sourceTree = "<group>"; };
55CE92522C9FC08100C38E1B /* UserDictionaryEditorWindow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserDictionaryEditorWindow.swift; sourceTree = "<group>"; };
55EA62E12BD6BF900056B5BA /* ConfigWindow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ConfigWindow.swift; sourceTree = "<group>"; };
E916C20A2BF5F81600548B7A /* azooKeyMacInputControllerHelper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = azooKeyMacInputControllerHelper.swift; sourceTree = "<group>"; };
E92E50722CA83F9B00403D75 /* OpenAIClient.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OpenAIClient.swift; sourceTree = "<group>"; };
Expand Down Expand Up @@ -234,6 +236,7 @@
isa = PBXGroup;
children = (
55EA62E12BD6BF900056B5BA /* ConfigWindow.swift */,
55CE92522C9FC08100C38E1B /* UserDictionaryEditorWindow.swift */,
);
path = Windows;
sourceTree = "<group>";
Expand Down Expand Up @@ -415,6 +418,7 @@
E96A5BC72BF4B28400AEAB72 /* InputState.swift in Sources */,
55EA62E22BD6BF900056B5BA /* ConfigWindow.swift in Sources */,
5523B1A42BF116CC0051DAA8 /* IntConfigItem.swift in Sources */,
55CE92532C9FC08100C38E1B /* UserDictionaryEditorWindow.swift in Sources */,
551398DD2BDD3ABF00F1DB82 /* CustomCodableConfigItem.swift in Sources */,
1A41E64226E74627009B65D7 /* AppDelegate.swift in Sources */,
55A9C54E2BA84951007F6F02 /* NSRange.swift in Sources */,
Expand Down Expand Up @@ -806,7 +810,7 @@
repositoryURL = "https://github.com/ensan-hcl/AzooKeyKanaKanjiConverter";
requirement = {
kind = revision;
revision = bab70ac150504d3f3829f1eb85c0f907654523e8;
revision = 8cf7aabf630f71f3b3cb617e959e4ea2ea01f5a1;
};
};
/* End XCRemoteSwiftPackageReference section */
Expand Down
2 changes: 1 addition & 1 deletion azooKeyMac/InputController/CandidateView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ class CandidatesViewController: NSViewController {
// ウィンドウの幅を設定(番号とパディングのための追加幅を考慮)
// 20 = corner radius * 2
let windowWidth = if self.showCandidateIndex {
maxWidth + 32
maxWidth + 48
} else {
maxWidth + 20
}
Expand Down

0 comments on commit ea6d762

Please sign in to comment.