From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1MuR78-0002ff-OB for mharc-grub-devel@gnu.org; Sun, 04 Oct 2009 09:27:02 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MuR76-0002e9-T2 for grub-devel@gnu.org; Sun, 04 Oct 2009 09:27:00 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MuR71-0002aT-Gv for grub-devel@gnu.org; Sun, 04 Oct 2009 09:26:59 -0400 Received: from [199.232.76.173] (port=40426 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MuR71-0002aL-7O for grub-devel@gnu.org; Sun, 04 Oct 2009 09:26:55 -0400 Received: from mail-pz0-f171.google.com ([209.85.222.171]:34504) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MuR70-0003Ov-Sq for grub-devel@gnu.org; Sun, 04 Oct 2009 09:26:55 -0400 Received: by pzk1 with SMTP id 1so2196851pzk.27 for ; Sun, 04 Oct 2009 06:26:54 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=wuyZuy37uBcPzykimp76q5u4dJdWjmYFL5csO8z9saE=; b=vpY/5CM9nJNiHbkjRxAHV8W5/tBFeofTIsPO8et2Z/tpjUvtDA3z4RE4wE+9vbvBW2 itMFZkBb5keDAMOwhX4T5YlymJ2C8XvQKyKYmRYUGH65X+4pzzzT/t5FOsk+kOfMpgCv 3Om7AV61FPprcvI96fL9iezZjJgjP+vCaYYdY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=Uhs/HRGycC6gsiyDz4DCBo93DeNypDh6uxEs9JHOZNrbxnqQ2v0mSB4Z1JWjePWovp MeSo/fIurPH11b0rIHCWb0eom0GXMPdHb7d68nKDyOhtIBfEjeeQJMqH961MEdaRVEPX +aWV6omM/FVRjOrWf4XuWxdKUw9OMYwVLcDyY= MIME-Version: 1.0 Received: by 10.140.142.11 with SMTP id p11mr856548rvd.21.1254662813952; Sun, 04 Oct 2009 06:26:53 -0700 (PDT) In-Reply-To: <48f46e890910040503p71cd758al85cbc1d857ef0ef3@mail.gmail.com> References: <48f46e890910040503p71cd758al85cbc1d857ef0ef3@mail.gmail.com> Date: Sun, 4 Oct 2009 21:26:53 +0800 Message-ID: From: Bean To: The development of GRUB 2 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) Subject: Re: [GITGRUB] New menu interface (implementation) X-BeenThere: grub-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: The development of GRUB 2 List-Id: The development of GRUB 2 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Oct 2009 13:27:01 -0000 On Sun, Oct 4, 2009 at 8:03 PM, Peter Cros wrote: > Demo auto scrolling runs=A0 OK on apple efi but some comments=A0 - > > Problem with different scaling between Text and Graphic mode on 1920x1200= , > text loses the bottom=A0 7th widget selection possibility. Hi, Oh, that's expected. As the bottom widget consist of bitmaps only, and text mode can't display bitmaps, it'd be skipped. In order to show it, you can either: 1, use panel to bind bitmap and text together panel { direction =3D left_to_right background =3D ":,,green, " command =3D "aa" image { image =3D "/menu/ubuntu.png" } text { text =3D "Ubuntu" color =3D "yellow:light-green" } } 2, Use a special syntax that instruct the menu system to display a rectangle when bitmap can't be loaded: image { image =3D "/menu/ubuntu.png,,red,#32" } --=20 Bean gitgrub home: http://github.com/grub/grub/ my fork page: http://github.com/bean123/grub/