diff options
author | Thomas White <taw@bitwiz.me.uk> | 2019-05-01 14:13:05 +0200 |
---|---|---|
committer | Thomas White <taw@bitwiz.me.uk> | 2019-05-01 14:13:05 +0200 |
commit | d48a6529e76eee80ed7ee476a2e01c94ce960163 (patch) | |
tree | 95402ea0d950a67df8c3adaea2eaff6f1b76b3d5 | |
parent | 9161e9a533978e8cc783c0498c2a69c6fab400ab (diff) |
Don't make stylesheet editor transient for narrative
This allows the user more freedom in stacking the windows, e.g. when
there are also slide windows.
-rw-r--r-- | src/narrative_window.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/narrative_window.c b/src/narrative_window.c index 413653d..1a7d11d 100644 --- a/src/narrative_window.c +++ b/src/narrative_window.c @@ -272,7 +272,6 @@ static void edit_ss_sig(GSimpleAction *action, GVariant *parameter, StylesheetEditor *se; se = stylesheet_editor_new(narrative_get_stylesheet(nw->n)); - gtk_window_set_transient_for(GTK_WINDOW(se), GTK_WINDOW(nw->window)); g_signal_connect(G_OBJECT(se), "changed", G_CALLBACK(stylesheet_changed_sig), nw); gtk_widget_show_all(GTK_WIDGET(se)); |