diff src/libmlk-ui/ui/notify.c @ 411:d74f53299252

make: add basic GNU make support
author David Demelier <markand@malikania.fr>
date Fri, 07 Oct 2022 14:35:31 +0200
parents 460c78706989
children 8f59201dc76b
line wrap: on
line diff
--- a/src/libmlk-ui/ui/notify.c	Fri Sep 09 13:30:34 2022 +0200
+++ b/src/libmlk-ui/ui/notify.c	Fri Oct 07 14:35:31 2022 +0200
@@ -30,7 +30,6 @@
 #include "label.h"
 #include "notify.h"
 #include "theme.h"
-#include "ui_p.h"
 
 #define WIDTH   (window.w / 3)
 #define HEIGHT  (window.h / 10)
@@ -81,7 +80,7 @@
 
 	/* Align icon at the left center. */
 	if (n->icon->h >= HEIGHT) {
-		tracef(_("notification icon is too large: %u > %u"), n->icon->h, HEIGHT);
+		tracef("notification icon is too large: %u > %u", n->icon->h, HEIGHT);
 		geo->icon_x = x + geo->theme->padding;
 		geo->icon_y = y + geo->theme->padding;
 	} else {