From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 11480 invoked by alias); 9 Jan 2006 08:43:33 -0000 Received: (qmail 11462 invoked by uid 22791); 9 Jan 2006 08:43:32 -0000 X-Spam-Check-By: sourceware.org Received: from gecko.sbs.de (HELO gecko.sbs.de) (194.138.37.40) by sourceware.org (qpsmtpd/0.31) with ESMTP; Mon, 09 Jan 2006 08:43:30 +0000 Received: from mail2.sbs.de (localhost [127.0.0.1]) by gecko.sbs.de (8.12.6/8.12.6) with ESMTP id k098hQ4i027222; Mon, 9 Jan 2006 09:43:26 +0100 Received: from nsprim.swb.siemens.de (nsprim.swb.siemens.de [141.73.80.3]) by mail2.sbs.de (8.12.6/8.12.6) with ESMTP id k098hQnu003971; Mon, 9 Jan 2006 09:43:26 +0100 Received: from haiti.swb.siemens.de (haiti.swb.siemens.de [141.73.80.6]) by nsprim.swb.siemens.de (8.9.1/8.9.1) with ESMTP id JAA16554; Mon, 9 Jan 2006 09:43:24 +0100 (MET) Received: from fiji (fiji [141.73.80.26]) by haiti.swb.siemens.de (8.11.7+Sun/8.11.7) with SMTP id k098hON02168; Mon, 9 Jan 2006 09:43:24 +0100 (MET) Message-Id: <200601090843.k098hON02168@haiti.swb.siemens.de> Date: Mon, 09 Jan 2006 08:43:00 -0000 From: Ruppert Reply-To: Ruppert Subject: Re: Source mode, function selector and file selector : display pb To: insight@sourceware.org, valegroup@att.net MIME-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii Content-MD5: IEHvUrKuSV/vOsRnneIjMA== X-IsSubscribed: yes Mailing-List: contact insight-help@sourceware.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: insight-owner@sourceware.org X-SW-Source: 2006-q1/txt/msg00009.txt.bz2 Hi, > >wilfried.fauvel@laposte.net wrote: >> I have a little problem with Insight (cygwin win32), when I start it, I >> have to resize the window to view the Source mode, function selector and >> file selector (under the icons bar). Is there any tips to fix that ? > >That's been a problem since the version of about 18 February 2003. The only >workaround I know of is to slightly adjust the window size. Then the missing >strip will pop into view. this is in the bug database as PR 253. I added a workaround description to this PR some time ago, which unfortunately was a bit garbled. I reproduce the relevant lines below. HTH. Regards Dieter R. There is a simple workaround for those who am annoyed by this: inserting a (invisible) frame with the required height into the row of comboboxes avoids this. Here is a patch for srcwin.itb (relative to 6.1) which does this: *** srcwin.itb.orig Thu Jul 14 09:35:17 2005 --- srcwin.itb Thu Jul 14 09:40:33 2005 *************** *** 106,113 **** $_statbar.mode list insert end MIXED $_statbar.mode list insert end SRC+ASM pack $_statbar.mode -side right -padx 10 -pady 4 ! pack $_statbar.name $_statbar.func -side left -pady 4 -padx 10 # if user likes control on top... if {[pref get gdb/src/top_control]} { --- 106,119 ---- $_statbar.mode list insert end MIXED $_statbar.mode list insert end SRC+ASM + # Workaround: the three comboboxes above sometimes display with height + # of one pixel. Insert a (invisible) frame with the required height + # fixes this... + + frame $_statbar.strut -height 24 -width 10 + pack $_statbar.mode -side right -padx 10 -pady 4 ! pack $_statbar.name $_statbar.func $_statbar.strut -side left -pady 4 -padx 10 # if user likes control on top... if {[pref get gdb/src/top_control]} {