Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
gnome-builder
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
2
Issues
2
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Günther Wagner
gnome-builder
Commits
abf0c33a
Commit
abf0c33a
authored
May 11, 2020
by
Christian Hergert
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
project-tree: save buffer first when renaming file
parent
271f858b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
src/plugins/project-tree/gbp-project-tree-pane-actions.c
src/plugins/project-tree/gbp-project-tree-pane-actions.c
+7
-2
No files found.
src/plugins/project-tree/gbp-project-tree-pane-actions.c
View file @
abf0c33a
...
...
@@ -246,11 +246,16 @@ close_matching_pages (GtkWidget *widget,
if
(
!
IDE_IS_EDITOR_PAGE
(
page
))
return
;
if
(
!
(
this_file
=
ide_editor_page_get_file
(
IDE_EDITOR_PAGE
(
page
))))
this_file
=
ide_editor_page_get_file
(
IDE_EDITOR_PAGE
(
page
));
if
(
this_file
==
NULL
)
return
;
if
(
g_file_equal
(
this_file
,
file
))
gtk_widget_destroy
(
widget
);
{
IdeBuffer
*
buffer
=
ide_editor_page_get_buffer
(
IDE_EDITOR_PAGE
(
page
));
ide_buffer_save_file_async
(
buffer
,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
);
gtk_widget_destroy
(
widget
);
}
}
#define DEFINE_ACTION_HANDLER(short_name, BODY) \
...
...
Write
Preview
Markdown
is supported
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