From 4b3bed1ceda1d720bd3b482d513f5e63fbf67b41 Mon Sep 17 00:00:00 2001 From: Radek Vykydal Date: Wed, 24 Aug 2022 11:09:42 +0200 Subject: [PATCH] Set wrapping also for the status label + identify --- widgets/src/SpokeSelector.c | 1 + widgets/src/StandaloneWindow.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/widgets/src/SpokeSelector.c b/widgets/src/SpokeSelector.c index a565a9ab43..3b29b98fe7 100644 --- a/widgets/src/SpokeSelector.c +++ b/widgets/src/SpokeSelector.c @@ -301,6 +301,7 @@ static void anaconda_spoke_selector_init(AnacondaSpokeSelector *spoke) { /* Create the status label. */ spoke->priv->status_label = gtk_label_new(_(DEFAULT_STATUS)); gtk_label_set_justify(GTK_LABEL(spoke->priv->status_label), GTK_JUSTIFY_LEFT); + gtk_label_set_line_wrap(GTK_LABEL(spoke->priv->status_label), TRUE); gtk_label_set_xalign(GTK_LABEL(spoke->priv->status_label), 0.0); gtk_label_set_yalign(GTK_LABEL(spoke->priv->status_label), 0.0); gtk_label_set_ellipsize(GTK_LABEL(spoke->priv->status_label), PANGO_ELLIPSIZE_MIDDLE); diff --git a/widgets/src/StandaloneWindow.c b/widgets/src/StandaloneWindow.c index cc3154751d..8bba41818f 100644 --- a/widgets/src/StandaloneWindow.c +++ b/widgets/src/StandaloneWindow.c @@ -50,7 +50,7 @@ /* The context needs to be written out (no macros) for the CN_ lines so that gettext can see it */ #define QUIT_TEXT CN_("GUI|Standalone Navigation", "_Quit") -#define CONTINUE_TEXT CN_("GUI|Standalone Navigation", "_Continue") +#define CONTINUE_TEXT CN_("GUI|Standalone Navigation", "_ContinueD") struct _AnacondaStandaloneWindowPrivate { GtkWidget *button_box; -- 2.37.1