Skip to content
This repository has been archived by the owner on Oct 18, 2021. It is now read-only.

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
Mika Melikyan authored and Mika Melikyan committed Feb 7, 2016
1 parent 6b99776 commit 0fb75af
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion SublimeOverlay/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ private void DockWindow()
SetParent(pDocked.MainWindowHandle, container.Handle);
InvalidateWindow(pDocked.MainWindowHandle);
SendMessage(pDocked.MainWindowHandle, 0x000F /* WMPAINT */, 0, 0);
FitToWindow();
}
public void ToggleTitle()
{
Expand Down Expand Up @@ -330,7 +331,7 @@ private void panelContainer_MouseUp(object sender, MouseEventArgs e)
{
ResizeLocation = Point.Empty;
}
public static void HideTitleBar(IntPtr hwnd)
public void HideTitleBar(IntPtr hwnd)
{
int style = GetWindowLong(hwnd, -16);
style &= -12582913;
Expand Down

0 comments on commit 0fb75af

Please sign in to comment.