From mboxrd@z Thu Jan 1 00:00:00 1970 From: Vietor Liu Subject: [PATCH] git-gui: Fixed _main window_ for screen height equal 600 px Date: Mon, 12 Oct 2009 11:18:41 +0800 Message-ID: <1255317521-11313-1-git-send-email-vietor@vxwo.org> Cc: git@vger.kernel.org To: "Shawn O. Pearce" X-From: git-owner@vger.kernel.org Mon Oct 12 05:31:12 2009 Return-path: Envelope-to: gcvg-git-2@lo.gmane.org Received: from vger.kernel.org ([209.132.176.167]) by lo.gmane.org with esmtp (Exim 4.50) id 1MxBcs-0003bp-Ey for gcvg-git-2@lo.gmane.org; Mon, 12 Oct 2009 05:31:10 +0200 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753678AbZJLD3W (ORCPT ); Sun, 11 Oct 2009 23:29:22 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753651AbZJLD3W (ORCPT ); Sun, 11 Oct 2009 23:29:22 -0400 Received: from mail-px0-f111.google.com ([209.85.216.111]:54918 "EHLO mail-px0-f111.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753349AbZJLD3V (ORCPT ); Sun, 11 Oct 2009 23:29:21 -0400 Received: by pxi9 with SMTP id 9so497964pxi.4 for ; Sun, 11 Oct 2009 20:28:45 -0700 (PDT) Received: by 10.114.105.20 with SMTP id d20mr8893356wac.32.1255317364208; Sun, 11 Oct 2009 20:16:04 -0700 (PDT) Received: from localhost.localdomain ([123.113.93.118]) by mx.google.com with ESMTPS id 21sm1864872pxi.7.2009.10.11.20.16.01 (version=SSLv3 cipher=RC4-MD5); Sun, 11 Oct 2009 20:16:03 -0700 (PDT) X-Mailer: git-send-email 1.6.5 Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Archived-At: When the screen height equal 600 px(e.g. Asus EeePC 1024x600), The _main window_ should be hide the _Push button_ and _Status bar_. Signed-off-by: Vietor Liu --- git-gui.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/git-gui.sh b/git-gui.sh index 09b2720..037a1f2 100755 --- a/git-gui.sh +++ b/git-gui.sh @@ -3083,7 +3083,7 @@ frame .vpane.lower.diff.body set ui_diff .vpane.lower.diff.body.t text $ui_diff -background white -foreground black \ -borderwidth 0 \ - -width 80 -height 15 -wrap none \ + -width 80 -height 5 -wrap none \ -font font_diff \ -xscrollcommand {.vpane.lower.diff.body.sbx set} \ -yscrollcommand {.vpane.lower.diff.body.sby set} \ -- 1.6.5