From: oes <oes@users.sourceforge.net>
Date: Thu, 12 Sep 2002 14:30:32 +0000 (+0000)
Subject: Uncheck the "Show Privoxy Window" taskbar menu item when window gets minimized. Fixes... 
X-Git-Tag: v_3_1_archive_branchpoint~127
X-Git-Url: http://www.privoxy.org/gitweb/%22https:/faq/@default-cgi@/diff?a=commitdiff_plain;h=5dbec4163bad3edeaa278f2904e847f85bcf4336;p=privoxy.git

Uncheck the "Show Privoxy Window" taskbar menu item when window gets minimized. Fixes bug #606804
---

diff --git a/src/w32log.c b/src/w32log.c
index 51df14e0..d2d59265 100644
--- a/src/w32log.c
+++ b/src/w32log.c
@@ -1,7 +1,7 @@
-const char w32log_rcs[] = "$Id: w32log.c,v 2.1 2002/06/04 16:37:48 jongfoster Exp $";
+const char w32log_rcs[] = "$Id: w32log.c,v 2.2 2002/09/05 08:43:11 oes Exp $";
 /*********************************************************************
  *
- * File        :  $Source: /cvsroot/ijbswa//current/src/w32log.c,v $
+ * File        :  $Source: /cvsroot/ijbswa/current/src/w32log.c,v $
  *
  * Purpose     :  Functions for creating and destroying the log window,
  *                ouputting strings, processing messages and so on.
@@ -32,6 +32,12 @@ const char w32log_rcs[] = "$Id: w32log.c,v 2.1 2002/06/04 16:37:48 jongfoster Ex
  *
  * Revisions   :
  *    $Log: w32log.c,v $
+ *    Revision 2.2  2002/09/05 08:43:11  oes
+ *    Synced with the stable branch:
+ *        Revision 1.25.2.1  2002/08/21 17:59:05  oes
+ *         - "Show Privoxy Window" now a toggle
+ *         - Temp kludge to let user and default action file be edited through win32 GUI (FR 592080)
+ *
  *    Revision 2.1  2002/06/04 16:37:48  jongfoster
  *    Adding Doxygen-style comments to variables
  *
@@ -1352,6 +1358,7 @@ LRESULT CALLBACK LogWindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lPara
          return 0;
 
       case WM_SHOWWINDOW:
+         g_bShowLogWindow = wParam;
       case WM_SIZE:
          /* Resize the logging window to fit the new frame */
          if (g_hwndLogBox)