summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntónio Fernandes <antoniof@gnome.org>2022-02-11 19:01:48 +0000
committerAntónio Fernandes <antoniof@gnome.org>2022-02-11 19:23:35 +0000
commit79d6f8fc1163c149279c02baee6ad629faea1e11 (patch)
treedca15b64faf096c56bb60a80e15fdd975ce9963f
parent8bcfc26859f285d0022fcf69137e32c8df95a051 (diff)
downloadnautilus-79d6f8fc1163c149279c02baee6ad629faea1e11.tar.gz
Revert "general: Prepare for non-GtkBin scrolled window"
This reverts commit be23d8a316756610dd567dbdb63ae0c6ace9199b.
-rw-r--r--src/nautilus-files-view.c2
-rw-r--r--src/nautilus-gtk4-helpers.c8
-rw-r--r--src/nautilus-gtk4-helpers.h2
-rw-r--r--src/nautilus-view-icon-controller.c3
4 files changed, 3 insertions, 12 deletions
diff --git a/src/nautilus-files-view.c b/src/nautilus-files-view.c
index c607e48a7..b48c3c5dc 100644
--- a/src/nautilus-files-view.c
+++ b/src/nautilus-files-view.c
@@ -3124,7 +3124,7 @@ nautilus_files_view_grab_focus (GtkWidget *widget)
view = NAUTILUS_FILES_VIEW (widget);
priv = nautilus_files_view_get_instance_private (view);
- child = gtk_scrolled_window_get_child (GTK_SCROLLED_WINDOW (priv->scrolled_window));
+ child = gtk_bin_get_child (GTK_BIN (priv->scrolled_window));
GTK_WIDGET_CLASS (nautilus_files_view_parent_class)->grab_focus (widget);
diff --git a/src/nautilus-gtk4-helpers.c b/src/nautilus-gtk4-helpers.c
index 4c3000083..98bea9c06 100644
--- a/src/nautilus-gtk4-helpers.c
+++ b/src/nautilus-gtk4-helpers.c
@@ -124,14 +124,6 @@ gtk_widget_get_first_child (GtkWidget *widget)
return NULL;
}
-GtkWidget *
-gtk_scrolled_window_get_child (GtkScrolledWindow *scrolled)
-{
- g_assert (GTK_IS_SCROLLED_WINDOW (scrolled));
-
- return gtk_bin_get_child (GTK_BIN (scrolled));
-}
-
GdkDisplay *
gtk_root_get_display (GtkRoot *root)
{
diff --git a/src/nautilus-gtk4-helpers.h b/src/nautilus-gtk4-helpers.h
index 925afc338..6763788cb 100644
--- a/src/nautilus-gtk4-helpers.h
+++ b/src/nautilus-gtk4-helpers.h
@@ -32,7 +32,7 @@ void gtk_check_button_set_active (GtkCheckButton *button,
gboolean gtk_check_button_get_active (GtkCheckButton *button);
GtkWidget *gtk_widget_get_first_child (GtkWidget *widget);
-GtkWidget *gtk_scrolled_window_get_child (GtkScrolledWindow *scrolled);
+
void gtk_style_context_add_provider_for_display (GdkDisplay *display,
GtkStyleProvider *provider,
diff --git a/src/nautilus-view-icon-controller.c b/src/nautilus-view-icon-controller.c
index df4d96f04..d85bb2805 100644
--- a/src/nautilus-view-icon-controller.c
+++ b/src/nautilus-view-icon-controller.c
@@ -1420,8 +1420,7 @@ constructed (GObject *object)
(GCallback) on_longpress_gesture_pressed_callback,
self);
- gtk_scrolled_window_set_child (GTK_SCROLLED_WINDOW (content_widget),
- GTK_WIDGET (self->view_ui));
+ gtk_container_add (GTK_CONTAINER (content_widget), GTK_WIDGET (self->view_ui));
self->action_group = nautilus_files_view_get_action_group (NAUTILUS_FILES_VIEW (self));
g_action_map_add_action_entries (G_ACTION_MAP (self->action_group),