Skip to content

Commit

Permalink
formatting and document known bug
Browse files Browse the repository at this point in the history
  • Loading branch information
step- committed Jul 1, 2023
1 parent ff1a104 commit 1426057
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
4 changes: 4 additions & 0 deletions feature-comparison.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ Several bugs that affected the parent project when it was forked have been fixed
* unpredictably, notebook tabs are too small [0.42.43]
* form button syntax [0.42.75]

## Known bugs

* (GTK+-2 build only) If the main icon of the notification dialog is a named icon, it does not scale automatically, therefore it looks larger than other icons in the tray. This bug has existed since at least version 0.40.0. It can only be noticed on some notification trays that do not themselves resize the icons they display.

## Frozen or untested features

* HTML dialog widget - As Fatdog64 Linux no longer packages the Webkit engine, I do not make an effort to maintain or even compile yadL's HTML dialog widget.
Expand Down
8 changes: 6 additions & 2 deletions src/notification.c
Original file line number Diff line number Diff line change
Expand Up @@ -321,9 +321,13 @@ handle_stdin (GIOChannel * channel, GIOCondition condition, gpointer data)
{
gchar *message = g_strcompress (value);
if (!options.data.no_markup)
UNDEPR (gtk_status_icon_set_tooltip_markup, status_icon, message) /*;*/
{
UNDEPR (gtk_status_icon_set_tooltip_markup, status_icon, message);
}
else
UNDEPR (gtk_status_icon_set_tooltip_text, status_icon, message);
{
UNDEPR (gtk_status_icon_set_tooltip_text, status_icon, message);
}
g_free (message);
}
else
Expand Down

0 comments on commit 1426057

Please sign in to comment.