Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
GNOME
gnumeric
Commits
c98fe0b0
Commit
c98fe0b0
authored
Jan 13, 1999
by
Arturo Espinosa
Browse files
Set focus on the file dialog boxes
parent
46a2174e
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/file.c
View file @
c98fe0b0
...
...
@@ -152,6 +152,7 @@ workbook_save_as (Workbook *wb)
g_return_if_fail
(
wb
!=
NULL
);
fsel
=
(
GtkFileSelection
*
)
gtk_file_selection_new
(
_
(
"Save workbook as"
));
gtk_window_set_modal
(
GTK_WINDOW
(
fsel
),
TRUE
);
if
(
wb
->
filename
)
gtk_file_selection_set_filename
(
fsel
,
wb
->
filename
);
...
...
@@ -200,6 +201,7 @@ dialog_query_load_file (Workbook *wb)
char
*
result
;
fsel
=
(
GtkFileSelection
*
)
gtk_file_selection_new
(
_
(
"Load file"
));
gtk_window_set_modal
(
GTK_WINDOW
(
fsel
),
TRUE
);
gtk_window_set_transient_for
(
GTK_WINDOW
(
fsel
),
GTK_WINDOW
(
wb
->
toplevel
));
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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