mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2025-02-06 13:04:56 +01:00
Fix typo in GIRARA_LIST_FOREACH
This commit is contained in:
parent
c0bec4c7e6
commit
77c297a8f8
1 changed files with 1 additions and 1 deletions
|
@ -709,7 +709,7 @@ zathura_page_widget_popup_menu(GtkWidget* widget, GdkEventButton* event)
|
||||||
if (rect.x1 <= event->x && rect.x2 >= event->x && rect.y1 <= event->y && rect.y2 >= event->y) {
|
if (rect.x1 <= event->x && rect.x2 >= event->x && rect.y1 <= event->y && rect.y2 >= event->y) {
|
||||||
annotation = annot;
|
annotation = annot;
|
||||||
}
|
}
|
||||||
GIRARA_LIST_FOREACH_END(priv->annotations.list, zathura_annotation_t*, iter, annotation);
|
GIRARA_LIST_FOREACH_END(priv->annotations.list, zathura_annotation_t*, iter, annot);
|
||||||
|
|
||||||
if (annotation != NULL) {
|
if (annotation != NULL) {
|
||||||
menu_add_item(menu, widget, _("Annotation properties"), cb_menu_annotation_properties);
|
menu_add_item(menu, widget, _("Annotation properties"), cb_menu_annotation_properties);
|
||||||
|
|
Loading…
Reference in a new issue