<p>In <a href="https://github.com/geany/geany-plugins/pull/352#discussion_r53330997">geanymacro/src/geanymacro.c</a>:</p>
<pre style='color:#555'>> @@ -1733,9 +1736,12 @@ static void EditMacroElements(Macro *m)
>  
>    /* create dialog box */
>    cTitle=g_strdup_printf(_("Edit: %s"),m->name);
> -  dialog=gtk_dialog_new_with_buttons(cTitle,GTK_WINDOW(geany->main_widgets->window),
> -          GTK_DIALOG_DESTROY_WITH_PARENT,NULL);
> -
> +  dialog=gtk_dialog_new();
> +    //_with_buttons(cTitle,GTK_WINDOW(geany->main_widgets->window),
> +          //GTK_DIALOG_DESTROY_WITH_PARENT,NULL);
> +    gtk_window_set_title(GTK_WINDOW(dialog), cTitle);
> +    gtk_window_set_transient_for(GTK_WINDOW(dialog), GTK_WINDOW(geany->main_widgets->window));
> +    gtk_window_set_destroy_with_parent(GTK_WINDOW(dialog), TRUE);
</pre>
<p>what was the problem with the <code>_with_buttons()</code> call, but with 0 buttons?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">—<br>Reply to this email directly or <a href="https://github.com/geany/geany-plugins/pull/352/files#r53330997">view it on GitHub</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/ABDrJ-1wRAjz2mZ7wjocFyRY3ILFA2TKks5pld2rgaJpZM4HdJrk.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/geany/geany-plugins/pull/352/files#r53330997"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>