Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
savoirfairelinux
jami-client-gnome
Commits
83e187b8
Commit
83e187b8
authored
Mar 26, 2015
by
Stepan Salenikovich
Browse files
gnome: increase size of workign dialog
Refs #69020 Change-Id: I3d235efbe4ca6ec8bf2a51e7d7873e3b78deee97
parent
f903d1be
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/dialogs.c
View file @
83e187b8
...
...
@@ -37,6 +37,7 @@ ring_dialog_working(GtkWidget *parent, const gchar *msg)
{
GtkWidget
*
dialog
=
gtk_dialog_new
();
gtk_window_set_destroy_with_parent
(
GTK_WINDOW
(
dialog
),
TRUE
);
gtk_window_set_resizable
(
GTK_WINDOW
(
dialog
),
FALSE
);
if
(
parent
&&
GTK_IS_WIDGET
(
parent
))
{
/* get parent window so we can center on it */
...
...
@@ -49,6 +50,8 @@ ring_dialog_working(GtkWidget *parent, const gchar *msg)
GtkWidget
*
content_area
=
gtk_dialog_get_content_area
(
GTK_DIALOG
(
dialog
));
gtk_box_set_spacing
(
GTK_BOX
(
content_area
),
10
);
gtk_widget_set_size_request
(
content_area
,
250
,
-
1
);
gtk_widget_set_margin_top
(
content_area
,
25
);
GtkWidget
*
message
=
NULL
;
if
(
msg
)
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment