diff --git a/MainForm.cs b/MainForm.cs
index 25aaaf1..c91bc83 100644
--- a/MainForm.cs
+++ b/MainForm.cs
@@ -70,6 +70,7 @@ namespace bzit.bomg
}
this.ApplicationMode = AppMode.Clear;
+
sessionFilename = sessionPassword = null;
usePassword = false;
}
@@ -1109,13 +1110,13 @@ namespace bzit.bomg
switch (treeView1.SNode.GetNodeType())
{
case RyzStudio.Windows.Forms.BookmarkTreeView.NodeType.Root:
- rootTreeNodeMenu.Show(Cursor.Position);
+ rootTreeNodeMenu.Show(e.Node.TreeView, e.X, e.Y);
break;
case RyzStudio.Windows.Forms.BookmarkTreeView.NodeType.Folder:
- folderTreeNodeMenu.Show(Cursor.Position);
+ folderTreeNodeMenu.Show(e.Node.TreeView, e.X, e.Y);
break;
case RyzStudio.Windows.Forms.BookmarkTreeView.NodeType.Page:
- pageTreeNodeMenu.Show(Cursor.Position);
+ pageTreeNodeMenu.Show(e.Node.TreeView, e.X, e.Y);
break;
default:
break;
diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs
index 5b9571d..cbe5b8d 100644
--- a/Properties/AssemblyInfo.cs
+++ b/Properties/AssemblyInfo.cs
@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("0.3.0.018")]
+[assembly: AssemblyVersion("0.3.0.025")]
[assembly: AssemblyFileVersion("0.1.0.0")]
diff --git a/Properties/Resources.Designer.cs b/Properties/Resources.Designer.cs
index 81591f5..01f1519 100644
--- a/Properties/Resources.Designer.cs
+++ b/Properties/Resources.Designer.cs
@@ -89,7 +89,7 @@ namespace bzit.bomg.Properties {
}
///
- /// Looks up a localized string similar to 0.3.0.018 beta.
+ /// Looks up a localized string similar to 0.3.0.025 beta.
///
internal static string app_version {
get {
diff --git a/Properties/Resources.resx b/Properties/Resources.resx
index 23227b9..d538afe 100644
--- a/Properties/Resources.resx
+++ b/Properties/Resources.resx
@@ -128,7 +128,7 @@
Bookmark Manager
- 0.3.0.018 beta
+ 0.3.0.025 beta
..\Resources\2\arrow-down-circle.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
diff --git a/bomg.csproj b/bomg.csproj
index 968d32a..cef8ea3 100644
--- a/bomg.csproj
+++ b/bomg.csproj
@@ -10,7 +10,7 @@
Properties
bzit.bomg
bomg
- v4.6.2
+ v4.7.2
512
@@ -239,6 +239,7 @@
MainForm.cs
+
SettingsSingleFileGenerator