Skip to content

Commit

Permalink
Fix Docking Manager reload MarkdownPanel on startup
Browse files Browse the repository at this point in the history
  • Loading branch information
VinsWorldcom committed Nov 2, 2023
1 parent dbd9b44 commit 2d8a816
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions MarkdigWrapper/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// 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.7.4.2")]
[assembly: AssemblyFileVersion("0.7.4.2")]
[assembly: AssemblyVersion("0.7.4.3")]
[assembly: AssemblyFileVersion("0.7.4.3")]
2 changes: 1 addition & 1 deletion NppMarkdownPanel/MarkdownPanelController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ private void TogglePanelVisible()
_nppTbData.dlgID = idMyDlg;
_nppTbData.uMask = NppTbMsg.DWS_DF_CONT_RIGHT | NppTbMsg.DWS_ICONTAB | NppTbMsg.DWS_ICONBAR;
_nppTbData.hIconTab = (uint)ConvertBitmapToIcon(Properties.Resources.markdown_16x16_solid_bmp).Handle;
_nppTbData.pszModuleName = Main.ModuleName;
_nppTbData.pszModuleName = $"{Main.ModuleName}.dll";
_ptrNppTbData = Marshal.AllocHGlobal(Marshal.SizeOf(_nppTbData));
Marshal.StructureToPtr(_nppTbData, _ptrNppTbData, false);

Expand Down
4 changes: 2 additions & 2 deletions NppMarkdownPanel/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// 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.7.4.2")]
[assembly: AssemblyFileVersion("0.7.4.2")]
[assembly: AssemblyVersion("0.7.4.3")]
[assembly: AssemblyFileVersion("0.7.4.3")]

0 comments on commit 2d8a816

Please sign in to comment.