Opened 5 years ago

Closed 5 years ago

#11444 closed enhancement (fixed)

gtk+3-3.24.2

Reported by: Douglas R. Reno Owned by: Bruce Dubbs
Priority: normal Milestone: 8.4
Component: BOOK Version: SVN
Severity: normal Keywords:
Cc:

Description

New point version

Change History (4)

comment:1 by Bruce Dubbs, 5 years ago

Owner: changed from blfs-book to Bruce Dubbs
Status: newassigned

comment:2 by Douglas R. Reno, 5 years ago

HEADS UP - I get a FTBFS when trying to build this one:

CC        widgets.o
CCLD      doc-shooter
/usr/bin/ld: shooter.o: in function `take_window_shot':
/sources/gtk+-3.24.2/gtk+-3.24.2/docs/tools/shooter.c:173: undefined reference to `gdk_screen_get_dfeault'
collect2: error: ld returned 1 exit status

Looks like a typo that could be fixed, but I backed down to 3.24.1 for stability for now.

comment:3 by Bruce Dubbs, 5 years ago

From git:

--- a/docs/tools/shooter.c
+++ b/docs/tools/shooter.c
@@ -170,10 +170,10 @@ take_window_shot (Window         child,
       y_orig = 0;
     }
 
-  if (x_orig + width > gdk_screen_get_width (gdk_screen_get_dfeault ()))
+  if (x_orig + width > gdk_screen_width ())
     width = gdk_screen_width () - x_orig;
 
-  if (y_orig + height > gdk_screen_get_height (gdk_screen_get_default ()))
+  if (y_orig + height > gdk_screen_height ())
     height = gdk_screen_height () - y_orig;

From NEWS:

* new api: gdk_x11_display_get_parent_relative pattern

* wayland: Use the settings portal when sandboxed

* Bugs fixed:
 widget-factory: Move app menu contents to primary menu
 Make dashed border-style work correctly
 gtkstack: fix null pointer dereference
 GDK W32: Support switching input modules at runtime
 Tooltip: Fix the used cursor size if 0 in Settings
 quartz: Fix crash when realizing GtkOffscreenWindow
 win32 dnd: Fix setting icon on drag-begin
 Fix race in GtkPlug window creation
 widget-factory: Add Keyboard Shortcuts menu item
 quartz: do not cache the screen in the gdkmonitor
 Trash in side bar sometimes contains a home icon
 wayland: Avoid crashes inside wl_proxy_marshal
 gtkimcontextime.c: Fix Korean input
 entry: Handle no-window events in gtk_entry_event
 Tooltip: Fix the used cursor size if 0 in Setting
 Notebook: Ensure menu_label updates with tab_label
 Adwaita: Improve headerbar theming
 win32: Make scroll behavior similar to Linux
 fix symbolic icon rendering with new librsvg
 emoji selector: force Emoji presentation
 a11y: fix a crash under wayland

* Translation updates:

I'll wait a while to see if upstream releases a new version.

comment:4 by Bruce Dubbs, 5 years ago

Resolution: fixed
Status: assignedclosed

Fixed at revision 20855.

Note: See TracTickets for help on using tickets.