Skip to content

Commit 1eb55b7

Browse files
committed
Do not switch active tab to template if unix due to bug #10, closes #10
1 parent ee29295 commit 1eb55b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

EntryTemplateManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public EntryTemplateManager(IPluginHost host, PwEntryForm form) {
4242
form.EntrySaving += form_EntrySaving;
4343
our_page.UseVisualStyleBackColor = true;
4444
form_tab_control.TabPages.Insert(0, our_page);
45-
if (entry_is_child || entry_is_template)
45+
if (entry_is_child || entry_is_template && !KeePassLib.Native.NativeLib.IsUnix())
4646
form_tab_control.SelectTab(0);
4747
}
4848

0 commit comments

Comments
 (0)