* [PATCH] gitk: make Ctrl "+" really increase the font size [not found] <fm5oln$ahq$1@ger.gmane.org> @ 2008-01-11 12:39 ` Johannes Schindelin 2008-01-11 12:59 ` Johannes Sixt [not found] ` <alpine.LSU.1.00.0801111238150.31053-OGWIkrnhIhzN0uC3ymp8PA@public.gmane.org> 0 siblings, 2 replies; 7+ messages in thread From: Johannes Schindelin @ 2008-01-11 12:39 UTC (permalink / raw) To: Stephan Hennig, paulus-eUNUBHrolfbYtjvyW6yDsg Cc: msysgit-/JYPxA39Uh5TLH3MbocFFw, git-u79uwXL29TY76Z2rM5mHXA Only Ctrl "=" was bound to increase the font size, probably because English keyboards have the plus on the same key as the equal sign. However, not the whole world is English, and at least with some other keyboard layouts, Ctrl "+" did not work as documented. Noticed by Stephan Hennig. Signed-off-by: Johannes Schindelin <Johannes.Schindelin-Mmb7MZpHnFY@public.gmane.org> --- On Thu, 10 Jan 2008, Stephan Hennig wrote: > > Hi, > > reducing font size in gitk with CTRL-- works, but enlarging font > size fails. Typing CTRL-+ just doesn't have any effect here. This is no bug in msysgit, but in gitk. Paul, please apply. gitk | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/gitk b/gitk index 1da0b0a..462f6aa 100644 --- a/gitk +++ b/gitk @@ -996,6 +996,7 @@ proc makewindow {} { bind . <$M1B-r> dosearchback bind . <$M1B-s> dosearch bind . <$M1B-equal> {incrfont 1} + bind . <$M1B-plus> {incrfont 1} bind . <$M1B-KP_Add> {incrfont 1} bind . <$M1B-minus> {incrfont -1} bind . <$M1B-KP_Subtract> {incrfont -1} ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH] gitk: make Ctrl "+" really increase the font size 2008-01-11 12:39 ` [PATCH] gitk: make Ctrl "+" really increase the font size Johannes Schindelin @ 2008-01-11 12:59 ` Johannes Sixt 2008-01-11 13:22 ` Julio Espinoza-Sokal 2008-01-11 13:47 ` Johannes Schindelin [not found] ` <alpine.LSU.1.00.0801111238150.31053-OGWIkrnhIhzN0uC3ymp8PA@public.gmane.org> 1 sibling, 2 replies; 7+ messages in thread From: Johannes Sixt @ 2008-01-11 12:59 UTC (permalink / raw) To: Johannes Schindelin Cc: Stephan Hennig, public-paulus-eUNUBHrolfbYtjvyW6yDsg, msysGit, Git Mailing List Johannes Schindelin schrieb: > Only Ctrl "=" was bound to increase the font size, probably because > English keyboards have the plus on the same key as the equal sign. > However, not the whole world is English, and at least with some > other keyboard layouts, Ctrl "+" did not work as documented. > > Noticed by Stephan Hennig. > > Signed-off-by: Johannes Schindelin <Johannes.Schindelin-Mmb7MZpHnFY@public.gmane.org> ^^^^^^^^^^^^^^... WTF is going on these days? [note: yours, git ML and msysgit ML adresses corrected manually] -- Hannes ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] gitk: make Ctrl "+" really increase the font size 2008-01-11 12:59 ` Johannes Sixt @ 2008-01-11 13:22 ` Julio Espinoza-Sokal 2008-01-11 13:47 ` Johannes Schindelin 1 sibling, 0 replies; 7+ messages in thread From: Julio Espinoza-Sokal @ 2008-01-11 13:22 UTC (permalink / raw) To: Johannes Sixt Cc: Johannes Schindelin, Stephan Hennig, public-paulus-eUNUBHrolfbYtjvyW6yDsg, msysGit, Git Mailing List On Jan 11, 2008 7:59 AM, Johannes Sixt <j.sixt@viscovery.net> wrote: > Johannes Schindelin schrieb: > > Only Ctrl "=" was bound to increase the font size, probably because > > English keyboards have the plus on the same key as the equal sign. > > However, not the whole world is English, and at least with some > > other keyboard layouts, Ctrl "+" did not work as documented. > > > > Noticed by Stephan Hennig. > > > > Signed-off-by: Johannes Schindelin <Johannes.Schindelin-Mmb7MZpHnFY@public.gmane.org> > ^^^^^^^^^^^^^^... > WTF is going on these days? > > [note: yours, git ML and msysgit ML adresses corrected manually] > > -- Hannes > I don't know if this is new, but it seems that's a feature of Gmane to prevent spam. http://gmane.org/tmda.php ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] gitk: make Ctrl "+" really increase the font size 2008-01-11 12:59 ` Johannes Sixt 2008-01-11 13:22 ` Julio Espinoza-Sokal @ 2008-01-11 13:47 ` Johannes Schindelin 1 sibling, 0 replies; 7+ messages in thread From: Johannes Schindelin @ 2008-01-11 13:47 UTC (permalink / raw) To: Johannes Sixt; +Cc: msysGit, Git Mailing List On Fri, 11 Jan 2008, Johannes Sixt wrote: > Johannes Schindelin schrieb: > > > Signed-off-by: Johannes Schindelin > > <Johannes.Schindelin-Mmb7MZpHnFY@public.gmane.org> > ^^^^^^^^^^^^^^... > WTF is going on these days? > > [note: yours, git ML and msysgit ML adresses corrected manually] Umm. The copy of my mail _I_ got via vger.kernel.org was _not_ corrupted. So I think the problem is on the viewer's side (IOW gmane), not the sender or the mailing list... Ciao, Dscho ^ permalink raw reply [flat|nested] 7+ messages in thread
[parent not found: <alpine.LSU.1.00.0801111238150.31053-OGWIkrnhIhzN0uC3ymp8PA@public.gmane.org>]
* Re: [PATCH] gitk: make Ctrl "+" really increase the font size [not found] ` <alpine.LSU.1.00.0801111238150.31053-OGWIkrnhIhzN0uC3ymp8PA@public.gmane.org> @ 2008-01-14 14:52 ` Stephan Hennig 2008-01-14 15:57 ` Johannes Schindelin 0 siblings, 1 reply; 7+ messages in thread From: Stephan Hennig @ 2008-01-14 14:52 UTC (permalink / raw) To: msysgit-/JYPxA39Uh5TLH3MbocFFw; +Cc: git-u79uwXL29TY76Z2rM5mHXA Johannes Schindelin schrieb: > > Only Ctrl "=" was bound to increase the font size, probably because > English keyboards have the plus on the same key as the equal sign. > However, not the whole world is English, and at least with some > other keyboard layouts, Ctrl "+" did not work as documented. > > Noticed by Stephan Hennig. > > Signed-off-by: Johannes Schindelin <Johannes.Schindelin-Mmb7MZpHnFY@public.gmane.org> > > --- > > On Thu, 10 Jan 2008, Stephan Hennig wrote: > > > > > Hi, > > > > reducing font size in gitk with CTRL-- works, but enlarging font > > size fails. Typing CTRL-+ just doesn't have any effect here. > > This is no bug in msysgit, but in gitk. > > Paul, please apply. The bug is still present in gitk that comes with Msysgit > $ git version > git version 1.5.4.rc3.941.gebb79 Best regards, Stephan Hennig ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] gitk: make Ctrl "+" really increase the font size 2008-01-14 14:52 ` Stephan Hennig @ 2008-01-14 15:57 ` Johannes Schindelin 2008-01-15 13:50 ` Stephan Hennig 0 siblings, 1 reply; 7+ messages in thread From: Johannes Schindelin @ 2008-01-14 15:57 UTC (permalink / raw) To: Stephan Hennig; +Cc: msysgit-/JYPxA39Uh5TLH3MbocFFw, git-u79uwXL29TY76Z2rM5mHXA Hi, [please do not cull me from the Cc' list. It's like answering to what I said while looking at someone else.] On Mon, 14 Jan 2008, Stephan Hennig wrote: > Johannes Schindelin schrieb: > > > > Only Ctrl "=" was bound to increase the font size, probably because > > English keyboards have the plus on the same key as the equal sign. > > However, not the whole world is English, and at least with some > > other keyboard layouts, Ctrl "+" did not work as documented. > > > > Noticed by Stephan Hennig. > > > > Signed-off-by: Johannes Schindelin <Johannes.Schindelin-Mmb7MZpHnFY@public.gmane.org> > > > > --- > > > > On Thu, 10 Jan 2008, Stephan Hennig wrote: > > > > > > > > Hi, > > > > > > reducing font size in gitk with CTRL-- works, but enlarging font > > > size fails. Typing CTRL-+ just doesn't have any effect here. > > > > This is no bug in msysgit, but in gitk. > > > > Paul, please apply. > > The bug is still present in gitk that comes with Msysgit If you are complaining about msysgit, please do not flood the git list with your response. Besides, it is asking a little much after just 4 days for a patch to come through no less than 4 different repositories: gitk -> git.git -> mingw.git -> 4msysgit.git. A patch that you could apply yourself easily, with the further benefit of being able to added your "Tested-by:" line. After all, I just worked for you, for free, and I expect something back. Hth, Dscho ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] gitk: make Ctrl "+" really increase the font size 2008-01-14 15:57 ` Johannes Schindelin @ 2008-01-15 13:50 ` Stephan Hennig 0 siblings, 0 replies; 7+ messages in thread From: Stephan Hennig @ 2008-01-15 13:50 UTC (permalink / raw) To: git Johannes Schindelin schrieb: >> > This is no bug in msysgit, but in gitk. >> > >> > Paul, please apply. >> >> The bug is still present in gitk that comes with Msysgit > > If you are complaining about msysgit, please do not flood the git list > with your response. You've pointed me to the git list, but since I actually made my observations with Msysgit I kept that list copied. > Besides, it is asking a little much after just 4 days for a patch to come > through no less than 4 different repositories: gitk -> git.git -> > mingw.git -> 4msysgit.git. I didn't know that. Since I couldn't find an entry in the list of changes for Git 1.5.4 RC3 and both Git and Msysgit are labelled as RCs I though instant feedback was the right thing. Sorry for inconveniencing you. > A patch that you could apply yourself easily, with the further benefit of > being able to added your "Tested-by:" line. > > After all, I just worked for you, for free, and I expect something back. Thanks! Actually, I think reporting bugs already is giving something (feedback) to the community. Since an application has the chance to be distributed with one less bug, user's acceptance is probably a little bit higher. Giving something to you - feel free to use one of the LaTeX or MetaPost packages I've written, read the MetaPost manual where I'm a co-author or ask LaTeX or MetaPost related questions on some LaTeX related newsgroup or list. I'd be happy to give some assistance. As for Git, since I don't speak Perl and I'm not fluent in C I guess I can't help much on that front. Best regards, Stephan Hennig ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2008-01-15 13:55 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- [not found] <fm5oln$ahq$1@ger.gmane.org> 2008-01-11 12:39 ` [PATCH] gitk: make Ctrl "+" really increase the font size Johannes Schindelin 2008-01-11 12:59 ` Johannes Sixt 2008-01-11 13:22 ` Julio Espinoza-Sokal 2008-01-11 13:47 ` Johannes Schindelin [not found] ` <alpine.LSU.1.00.0801111238150.31053-OGWIkrnhIhzN0uC3ymp8PA@public.gmane.org> 2008-01-14 14:52 ` Stephan Hennig 2008-01-14 15:57 ` Johannes Schindelin 2008-01-15 13:50 ` Stephan Hennig
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).