We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 436fc9a commit 77e36ffCopy full SHA for 77e36ff
src/imagewindow.c
@@ -733,7 +733,11 @@ imagewindow_imageui_set_visible(Imagewindow *win,
733
gtk_label_set_text(GTK_LABEL(win->subtitle), "");
734
735
if (imageui) {
736
- gtk_stack_set_transition_type(GTK_STACK(win->stack), transition);
+ printf("imagewindow_imageui_set_visible: FIXME ... "
737
+ "set_transition_type can stack overflow for some transitions\n");
738
+ // gtk_stack_set_transition_type(GTK_STACK(win->stack), transition);
739
+ gtk_stack_set_transition_type(GTK_STACK(win->stack),
740
+ GTK_STACK_TRANSITION_TYPE_SLIDE_LEFT_RIGHT);
741
gtk_stack_set_visible_child(GTK_STACK(win->stack), GTK_WIDGET(imageui));
742
743
/* Enable the control settings, if the displaycontrolbar is on.
0 commit comments