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>Left" { "move-cursor" (visual-positions, -3, 0) };
|
||||
* };
|
||||
* }
|
||||
* GtkEntry
|
||||
* {
|
||||
* gtk-key-bindings: MoveCursor3
|
||||
* gtk-key-bindings: MoveCursor3;
|
||||
* }
|
||||
* </programlisting></informalexample>
|
||||
* </para>
|
||||
@ -96,10 +96,10 @@
|
||||
* {
|
||||
* bind "<Control>Right" { };
|
||||
* bind "<Control>Left" { };
|
||||
* };
|
||||
* }
|
||||
* GtkEntry
|
||||
* {
|
||||
* gtk-key-bindings: MoveCursor3
|
||||
* gtk-key-bindings: MoveCursor3;
|
||||
* }
|
||||
* </programlisting></informalexample>
|
||||
* The above example will not have the desired effect of causing
|
||||
@ -117,10 +117,10 @@
|
||||
* {
|
||||
* unbind "<Control>Right";
|
||||
* unbind "<Control>Left";
|
||||
* };
|
||||
* }
|
||||
* GtkEntry
|
||||
* {
|
||||
* gtk-key-bindings: MoveCursor3
|
||||
* gtk-key-bindings: MoveCursor3;
|
||||
* }
|
||||
* </programlisting></informalexample>
|
||||
* Now, GTK+ will find a match when looking up "<Control>Right"
|
||||
|
Loading…
Reference in New Issue
Block a user