Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
thunar
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Pratik Karki
thunar
Commits
fbb87f2f
Commit
fbb87f2f
authored
7 years ago
by
Andre Miranda
Browse files
Options
Downloads
Patches
Plain Diff
Replace gtk_widget_reparent with xfce_widget_reparent
Requires libxfce4ui >=4.13.2
parent
e6178e54
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
configure.ac.in
+1
-1
1 addition, 1 deletion
configure.ac.in
thunar/thunar-progress-dialog.c
+4
-2
4 additions, 2 deletions
thunar/thunar-progress-dialog.c
with
5 additions
and
3 deletions
configure.ac.in
+
1
−
1
View file @
fbb87f2f
...
...
@@ -153,7 +153,7 @@ XDT_CHECK_PACKAGE([GMODULE], [gmodule-2.0], [2.30.0])
XDT_CHECK_PACKAGE([GTK], [gtk+-3.0], [3.22.0])
XDT_CHECK_PACKAGE([GDK_PIXBUF], [gdk-pixbuf-2.0], [2.14.0])
XDT_CHECK_PACKAGE([LIBXFCE4UTIL], [libxfce4util-1.0], [4.12.0])
XDT_CHECK_PACKAGE([LIBXFCE4UI], [libxfce4ui-2], [4.1
2.0
])
XDT_CHECK_PACKAGE([LIBXFCE4UI], [libxfce4ui-2], [4.1
3.2
])
XDT_CHECK_PACKAGE([XFCONF], [libxfconf-0], [4.12.0])
dnl ******************************
...
...
This diff is collapsed.
Click to expand it.
thunar/thunar-progress-dialog.c
+
4
−
2
View file @
fbb87f2f
...
...
@@ -24,6 +24,8 @@
#include
<gtk/gtk.h>
#include
<libxfce4ui/libxfce4ui.h>
#include
<thunar/thunar-private.h>
#include
<thunar/thunar-progress-dialog.h>
#include
<thunar/thunar-progress-view.h>
...
...
@@ -253,7 +255,7 @@ thunar_progress_dialog_job_finished (ThunarProgressDialog *dialog,
if
(
n_views
==
SCROLLVIEW_THRESHOLD
-
1
)
{
/* reparent the content box */
gtk
_widget_reparent
(
dialog
->
content_box
,
dialog
->
vbox
);
xfce
_widget_reparent
(
dialog
->
content_box
,
dialog
->
vbox
);
/* destroy the scroll win */
gtk_widget_destroy
(
dialog
->
scrollwin
);
...
...
@@ -366,7 +368,7 @@ thunar_progress_dialog_add_job (ThunarProgressDialog *dialog,
gtk_widget_show
(
viewport
);
/* move the content box into the viewport */
gtk
_widget_reparent
(
dialog
->
content_box
,
viewport
);
xfce
_widget_reparent
(
dialog
->
content_box
,
viewport
);
}
g_signal_connect_swapped
(
view
,
"need-attention"
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment