mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-28 22:41:43 +00:00
Merge branch 'matthiasc/for-master' into 'master'
filechooser: Remove a leftover signal emission Closes #2942 See merge request GNOME/gtk!2276
This commit is contained in:
commit
7e2fceebca
@ -177,6 +177,7 @@ def ConvertToDocbook(infile, outfile):
|
|||||||
subprocess.check_call(["pandoc", infile, "-o", outfile,
|
subprocess.check_call(["pandoc", infile, "-o", outfile,
|
||||||
"--from=" + input_format,
|
"--from=" + input_format,
|
||||||
"--to=" + output_format,
|
"--to=" + output_format,
|
||||||
|
"--standalone",
|
||||||
"--top-level-division=" + division])
|
"--top-level-division=" + division])
|
||||||
|
|
||||||
def ExpandGtkDocAbbreviations(infile, outfile):
|
def ExpandGtkDocAbbreviations(infile, outfile):
|
||||||
|
@ -5701,7 +5701,6 @@ static void
|
|||||||
request_response_and_add_to_recent_list (GtkFileChooserWidget *impl)
|
request_response_and_add_to_recent_list (GtkFileChooserWidget *impl)
|
||||||
{
|
{
|
||||||
gtk_widget_activate_action (GTK_WIDGET (impl), "response.activate", NULL);
|
gtk_widget_activate_action (GTK_WIDGET (impl), "response.activate", NULL);
|
||||||
g_signal_emit_by_name (impl, "response-requested");
|
|
||||||
add_selection_to_recent_list (impl);
|
add_selection_to_recent_list (impl);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -50,7 +50,7 @@
|
|||||||
* <property name='scope'>managed</property>
|
* <property name='scope'>managed</property>
|
||||||
* <child>
|
* <child>
|
||||||
* <object class='GtkShortcut'>
|
* <object class='GtkShortcut'>
|
||||||
* <property name='trigger'><Control>k</property>
|
* <property name='trigger'>&lt;Control&gt;k</property>
|
||||||
* <property name='action'>activate</property>
|
* <property name='action'>activate</property>
|
||||||
* </object>
|
* </object>
|
||||||
* </child>
|
* </child>
|
||||||
@ -58,6 +58,11 @@
|
|||||||
* </child>
|
* </child>
|
||||||
* </object>
|
* </object>
|
||||||
* ]|
|
* ]|
|
||||||
|
*
|
||||||
|
* This example creates a #GtkActivateAction for triggering the `activate`
|
||||||
|
* signal of the GtkButton. See gtk_shortcut_action_parse_string() for the syntax
|
||||||
|
* for other kinds of #GtkShortcutAction. See gtk_shortcut_trigger_parse_string()
|
||||||
|
* to learn more about the syntax for triggers.
|
||||||
**/
|
**/
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
@ -122,6 +122,10 @@ gtk_shortcut_trigger_trigger (GtkShortcutTrigger *self,
|
|||||||
* - two valid trigger strings, separated by a `|` character, for a
|
* - two valid trigger strings, separated by a `|` character, for a
|
||||||
* #GtkAlternativeTrigger: `<Control>q|<Control>w`
|
* #GtkAlternativeTrigger: `<Control>q|<Control>w`
|
||||||
*
|
*
|
||||||
|
* Note that you will have to escape the `<` and `>` characters when specifying
|
||||||
|
* triggers in XML files, such as GtkBuilder ui files. Use `<` instead of
|
||||||
|
* `<` and `>` instead of `>`.
|
||||||
|
*
|
||||||
* Returns: (nullable) (transfer full): a new #GtkShortcutTrigger
|
* Returns: (nullable) (transfer full): a new #GtkShortcutTrigger
|
||||||
* or %NULL on error
|
* or %NULL on error
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user