]> www.fi.muni.cz Git - evince.git/blobdiff - shell/ev-utils.c
[build] Add gsettings xml schema file to DISTCLEANFILES
[evince.git] / shell / ev-utils.c
index 8c94f6e1180a89c316d8769520a902fea5a24fbc..5c5e165f979dec47d06c36d1a787b3d1c22af674 100644 (file)
@@ -14,7 +14,7 @@
  *
  *  You should have received a copy of the GNU General Public License
  *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  *
  */
 
@@ -247,16 +247,18 @@ ev_gui_menu_position_tree_selection (GtkMenu   *menu,
        GtkTreeView *tree_view = GTK_TREE_VIEW (user_data);
        GtkWidget *widget = GTK_WIDGET (user_data);
        GtkRequisition req;
+       GtkAllocation allocation;
        GdkRectangle visible;
 
        gtk_widget_size_request (GTK_WIDGET (menu), &req);
-       gdk_window_get_origin (widget->window, x, y);
+       gdk_window_get_origin (gtk_widget_get_window (widget), x, y);
+       gtk_widget_get_allocation (widget, &allocation);
 
-       *x += (widget->allocation.width - req.width) / 2;
+       *x += (allocation.width - req.width) / 2;
 
        /* Add on height for the treeview title */
        gtk_tree_view_get_visible_rect (tree_view, &visible);
-       *y += widget->allocation.height - visible.height;
+       *y += allocation.height - visible.height;
 
        selection = gtk_tree_view_get_selection (tree_view);
        selected_rows = gtk_tree_selection_get_selected_rows (selection, &model);