Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 299515 Details for
Bug 439414
extremely large tooltips
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
what about something like this?
pk-tooltips.patch (text/plain), 888 bytes, created by
Richard Hughes
on 2008-03-28 19:29:22 UTC
(
hide
)
Description:
what about something like this?
Filename:
MIME Type:
Creator:
Richard Hughes
Created:
2008-03-28 19:29:22 UTC
Size:
888 bytes
patch
obsolete
>diff --git a/src/pk-watch.c b/src/pk-watch.c >index f085a9a..6db416b 100644 >--- a/src/pk-watch.c >+++ b/src/pk-watch.c >@@ -58,6 +58,7 @@ static void pk_watch_init (PkWatch *watch); > static void pk_watch_finalize (GObject *object); > > #define PK_WATCH_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), PK_TYPE_WATCH, PkWatchPrivate)) >+#define PK_WATCH_MAXIMUM_TOOLTIP_LINES 10 > > struct PkWatchPrivate > { >@@ -126,6 +127,12 @@ pk_watch_refresh_tooltip (PkWatch *watch) > g_string_append_printf (status, "%s: %s\n", localised_status, text); > g_free (text); > } >+ /* don't fill the screen with a giant tooltip */ >+ if (i > PK_WATCH_MAXIMUM_TOOLTIP_LINES) { >+ g_string_append_printf (status, _("(%i more transactions)\n"), >+ i - PK_WATCH_MAXIMUM_TOOLTIP_LINES); >+ break; >+ } > } > if (status->len == 0) { > g_string_append (status, "Doing something...");
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 439414
: 299515