Skip to content

Commit

Permalink
Set relative to
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremypw committed Sep 9, 2024
1 parent 476bb3c commit 46d0941
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/View/Widgets/SearchResults.vala
Original file line number Diff line number Diff line change
Expand Up @@ -146,12 +146,17 @@ namespace Files.View.Chrome {

public SearchResults (Gtk.Widget _delegate_widget) {
Object (
position: Gtk.PositionType.BOTTOM,
delegate_widget: _delegate_widget
);
}

construct {

relative_to = delegate_widget;
position = Gtk.PositionType.BOTTOM;
// Gtk4 can remove the arrow with:
// has_arrow = false;
// How can we do this in Gtk3?
#if HAVE_ZEITGEIST
var template = new Zeitgeist.Event ();

Expand Down

0 comments on commit 46d0941

Please sign in to comment.