From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from list by lists.gnu.org with archive (Exim 4.71) id 1U37yB-0003JY-TE for mharc-grub-devel@gnu.org; Wed, 06 Feb 2013 11:35:35 -0500 Received: from eggs.gnu.org ([208.118.235.92]:41267) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U37y8-0003HM-DU for grub-devel@gnu.org; Wed, 06 Feb 2013 11:35:33 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1U37y6-0002a9-Ko for grub-devel@gnu.org; Wed, 06 Feb 2013 11:35:32 -0500 Received: from collab.rosalab.ru ([217.199.216.181]:54906) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U37y6-0002ZZ-CS for grub-devel@gnu.org; Wed, 06 Feb 2013 11:35:30 -0500 Received: from localhost (localhost.localdomain [127.0.0.1]) by collab.rosalab.ru (Postfix) with ESMTP id 462DE29C37E for ; Wed, 6 Feb 2013 20:35:28 +0400 (MSK) X-Virus-Scanned: amavisd-new at rosalab.ru Received: from collab.rosalab.ru ([127.0.0.1]) by localhost (collab.rosalab.ru [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id TDWtMVViaIMW for ; Wed, 6 Feb 2013 20:35:27 +0400 (MSK) Received: from icedphoenix.localnet (unknown [10.168.1.56]) by collab.rosalab.ru (Postfix) with ESMTPSA id B338329C317 for ; Wed, 6 Feb 2013 20:35:27 +0400 (MSK) From: Vladimir Testov To: grub-devel@gnu.org Subject: ticks_disappear option in circular_progress has no default value Date: Wed, 06 Feb 2013 20:35:26 +0400 Message-ID: <5077536.pO2PMQJg02@icedphoenix> User-Agent: KMail/4.8.5 (Linux/3.2.0-36-generic; KDE/4.8.5; x86_64; ; ) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="nextPart4050401.YAdr4tT19s" Content-Transfer-Encoding: 7Bit X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 217.199.216.181 X-BeenThere: grub-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: The development of GNU GRUB List-Id: The development of GNU GRUB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Feb 2013 16:35:33 -0000 --nextPart4050401.YAdr4tT19s Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" ticks_disappear option in circular_progress has no default value And it's no good. fix included -- With best regards, _______________________________ Vladimir Testov, ROSA Laboratory. www.rosalab.ru --nextPart4050401.YAdr4tT19s Content-Disposition: attachment; filename="grub2-ticks-disappear-default.patch" Content-Transfer-Encoding: 7Bit Content-Type: text/x-patch; charset="UTF-8"; name="grub2-ticks-disappear-default.patch" diff -Naur grub-new/grub-core/gfxmenu/gui_circular_progress.c grub-new2/grub-core/gfxmenu/gui_circular_progress.c --- grub-new/grub-core/gfxmenu/gui_circular_progress.c 2010-12-01 17:45:43.000000000 +0300 +++ grub-new2/grub-core/gfxmenu/gui_circular_progress.c 2013-02-06 20:31:14.198825969 +0400 @@ -303,6 +303,7 @@ self->visible = 1; self->num_ticks = 64; self->start_angle = -64; + self->ticks_disappear = 1; return (grub_gui_component_t) self; } --nextPart4050401.YAdr4tT19s--