Skip to content

Commit

Permalink
Do not switch active tab to template if unix due to bug #10, closes #10
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchcapper committed Jun 8, 2019
1 parent ee29295 commit 1eb55b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion EntryTemplateManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public EntryTemplateManager(IPluginHost host, PwEntryForm form) {
form.EntrySaving += form_EntrySaving;
our_page.UseVisualStyleBackColor = true;
form_tab_control.TabPages.Insert(0, our_page);
if (entry_is_child || entry_is_template)
if (entry_is_child || entry_is_template && !KeePassLib.Native.NativeLib.IsUnix())
form_tab_control.SelectTab(0);
}

Expand Down

0 comments on commit 1eb55b7

Please sign in to comment.