[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: master db6de49f231: Allow displaying tool bar on the bottom of the f
From: |
Po Lu |
Subject: |
Re: master db6de49f231: Allow displaying tool bar on the bottom of the frame |
Date: |
Fri, 23 Jun 2023 08:23:24 +0800 |
User-agent: |
Gnus/5.13 (Gnus v5.13) |
Arash Esbati <arash@gnu.org> writes:
> Po Lu via Mailing list for Emacs changes <emacs-diffs@gnu.org> writes:
>
>> branch: master
>> commit db6de49f231f863b21547173ce3ac9ab8e5e0d86
>> Author: Po Lu <luangruo@yahoo.com>
>> Commit: Po Lu <luangruo@yahoo.com>
>> [...]
>> @item tool-bar-position
>> This tells on which side the tool bar on @var{frame} is and can be one
>> -of @code{left}, @code{top}, @code{right} or @code{bottom}. The only
>> -toolkit that currently supports a value other than @code{top} is GTK+.
>> +of @code{left}, @code{top}, @code{right} or @code{bottom}.
>> +
>> +The values @code{left} and @code{bottom} are only supported on builds
> ^^^^^^
>
> Compared with the text below, I think the above should read @code{right}.
>
>> +using the GTK+ toolkit; @code{bottom} is supported on all builds other
>> +than NS, and @code{top} is supported everywhere.
>>
>> @item tool-bar-size
>> A cons of the width and height of the tool bar of @var{frame}.
>> @@ -1905,9 +1913,11 @@ whenever the tool bar wraps (@pxref{Frame Layout}).
>>
>> @vindex tool-bar-position@r{, a frame parameter}
>> @item tool-bar-position
>> -The position of the tool bar when Emacs was built with GTK+. Its value
>> -can be one of @code{top}, @code{bottom} @code{left}, @code{right}. The
>> -default is @code{top}.
>> +The position of the tool bar. Its value can be one of @code{top},
>> +@code{bottom} @code{left}, @code{right}. The default is @code{top}.
>> +
>> +It can be set to @code{bottom} on Emacs built with any toolkit other
>> +than Nextstep, and @code{left} or @code{right} on builds using GTK+.
>
> Best, Arash
Oh, right. Thanks!