Skip to content

Commit

Permalink
Merge pull request #2 from Aoi-hosizora/dev.v1.2.0
Browse files Browse the repository at this point in the history
Release v1.2.0
  • Loading branch information
Aoi-hosizora authored Mar 19, 2024
2 parents 8d2609b + bf90937 commit 3a28321
Show file tree
Hide file tree
Showing 84 changed files with 2,634 additions and 1,176 deletions.
16 changes: 13 additions & 3 deletions PowerPointArrangeAddin/Dialog/SettingDialog.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions PowerPointArrangeAddin/Dialog/SettingDialog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ private void SettingDialog_Load(object sender, EventArgs e) {
chkCheckUpdateWhenStartUp.Checked = AddInSetting.Instance.CheckUpdateWhenStartUp;
chkLessButtonsForArrangement.Checked = AddInSetting.Instance.LessButtonsForArrangementGroup;
chkHideMarginSettingForTextbox.Checked = AddInSetting.Instance.HideMarginSettingForTextboxGroup;
chkAllowDoublePressExtendButton.Checked = AddInSetting.Instance.AllowDoublePressExtendButton;
cboIconStyle.SelectedIndex = AddInSetting.Instance.IconStyle.ToIconStyleIndex();
}

Expand All @@ -58,6 +59,7 @@ private void BtnOK_Click(object sender, EventArgs e) {
AddInSetting.Instance.CheckUpdateWhenStartUp = chkCheckUpdateWhenStartUp.Checked;
AddInSetting.Instance.LessButtonsForArrangementGroup = chkLessButtonsForArrangement.Checked;
AddInSetting.Instance.HideMarginSettingForTextboxGroup = chkHideMarginSettingForTextbox.Checked;
AddInSetting.Instance.AllowDoublePressExtendButton = chkAllowDoublePressExtendButton.Checked;
AddInSetting.Instance.IconStyle = cboIconStyle.SelectedIndex.ToAddInIconStyle();
AddInSetting.Instance.Save();
DialogResult = DialogResult.OK;
Expand Down
6 changes: 3 additions & 3 deletions PowerPointArrangeAddin/Dialog/SettingDialog.ja.resx
Original file line number Diff line number Diff line change
Expand Up @@ -197,9 +197,6 @@
<data name="chkHideMarginSettingForTextbox.Text" xml:space="preserve">
<value>「描図ツール - 書式」タブの「テキストボックス」グループの余白設定を非表示する(&amp;G)</value>
</data>
<data name="btnCheckUpdate.Text" xml:space="preserve">
<value>更新を確認(&amp;K)...</value>
</data>
<data name="chkCheckUpdateWhenStartUp.Text" xml:space="preserve">
<value>PowerPoint が起動される時に自動的にアドインの更新を確認(&amp;F)</value>
</data>
Expand All @@ -212,4 +209,7 @@
<data name="cboIconStyle.Items1" xml:space="preserve">
<value>スキューモーフィズム (Microsoft Office 2010 と以前)</value>
</data>
<data name="chkAllowDoublePressExtendButton.Text" xml:space="preserve">
<value>「サイズ変更 - オブジェクト伸長」ボタンのダブルクリックを許可する(&amp;E)</value>
</data>
</root>
Loading

0 comments on commit 3a28321

Please sign in to comment.