forked from AuroraMiddleware/gtk
bindings: Fix stray semicolons in CSS example for bindings
Semicolon shouldn't be at the end of binding set
This commit is contained in:
parent
1d2a070254
commit
89f78a718b
@ -73,10 +73,10 @@
|
|||||||
* {
|
* {
|
||||||
* bind "<Control>Right" { "move-cursor" (visual-positions, 3, 0) };
|
* bind "<Control>Right" { "move-cursor" (visual-positions, 3, 0) };
|
||||||
* bind "<Control>Left" { "move-cursor" (visual-positions, -3, 0) };
|
* bind "<Control>Left" { "move-cursor" (visual-positions, -3, 0) };
|
||||||
* };
|
* }
|
||||||
* GtkEntry
|
* GtkEntry
|
||||||
* {
|
* {
|
||||||
* gtk-key-bindings: MoveCursor3
|
* gtk-key-bindings: MoveCursor3;
|
||||||
* }
|
* }
|
||||||
* </programlisting></informalexample>
|
* </programlisting></informalexample>
|
||||||
* </para>
|
* </para>
|
||||||
@ -96,10 +96,10 @@
|
|||||||
* {
|
* {
|
||||||
* bind "<Control>Right" { };
|
* bind "<Control>Right" { };
|
||||||
* bind "<Control>Left" { };
|
* bind "<Control>Left" { };
|
||||||
* };
|
* }
|
||||||
* GtkEntry
|
* GtkEntry
|
||||||
* {
|
* {
|
||||||
* gtk-key-bindings: MoveCursor3
|
* gtk-key-bindings: MoveCursor3;
|
||||||
* }
|
* }
|
||||||
* </programlisting></informalexample>
|
* </programlisting></informalexample>
|
||||||
* The above example will not have the desired effect of causing
|
* The above example will not have the desired effect of causing
|
||||||
@ -117,10 +117,10 @@
|
|||||||
* {
|
* {
|
||||||
* unbind "<Control>Right";
|
* unbind "<Control>Right";
|
||||||
* unbind "<Control>Left";
|
* unbind "<Control>Left";
|
||||||
* };
|
* }
|
||||||
* GtkEntry
|
* GtkEntry
|
||||||
* {
|
* {
|
||||||
* gtk-key-bindings: MoveCursor3
|
* gtk-key-bindings: MoveCursor3;
|
||||||
* }
|
* }
|
||||||
* </programlisting></informalexample>
|
* </programlisting></informalexample>
|
||||||
* Now, GTK+ will find a match when looking up "<Control>Right"
|
* Now, GTK+ will find a match when looking up "<Control>Right"
|
||||||
|
Loading…
Reference in New Issue
Block a user