summaryrefslogtreecommitdiff
path: root/src/proto/gui_gtk_x11.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-08-19 22:58:45 +0200
committerBram Moolenaar <Bram@vim.org>2018-08-19 22:58:45 +0200
commit3f6a16f022c437eccaeb683640b25a972cb1b376 (patch)
treee004b48fa09a91045fd50df8b9c1d62551160180 /src/proto/gui_gtk_x11.pro
parentd8f0cef2bdbdc15d7906f991725e09e67c97cf7e (diff)
downloadvim-git-3f6a16f022c437eccaeb683640b25a972cb1b376.tar.gz
patch 8.1.0301: GTK: input method popup displayed on wrong screen.v8.1.0301
Problem: GTK: Input method popup displayed on wrong screen. Solution: Add the screen position offset. (Ken Takata, closes #3268)
Diffstat (limited to 'src/proto/gui_gtk_x11.pro')
-rw-r--r--src/proto/gui_gtk_x11.pro2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/gui_gtk_x11.pro b/src/proto/gui_gtk_x11.pro
index aea8d0b68..111cac7c9 100644
--- a/src/proto/gui_gtk_x11.pro
+++ b/src/proto/gui_gtk_x11.pro
@@ -25,7 +25,7 @@ int gui_mch_maximized(void);
void gui_mch_unmaximize(void);
void gui_mch_newfont(void);
void gui_mch_set_shellsize(int width, int height, int min_width, int min_height, int base_width, int base_height, int direction);
-void gui_gtk_get_screen_size_of_win(GtkWidget *wid, int *width, int *height);
+void gui_gtk_get_screen_geom_of_win(GtkWidget *wid, int *screen_x, int *screen_y, int *width, int *height);
void gui_mch_get_screen_dimensions(int *screen_w, int *screen_h);
void gui_mch_settitle(char_u *title, char_u *icon);
void gui_mch_enable_menu(int showit);