ToolTip/JPopupMenu bug?

The popup menu and tooltips for the menu items in the popup menu in my program had been working fine until I added a glassPane. Then I noticed that sometimes the popup menu is drawn below the glasspane and doesn't respond to the cursor moving over its menu items.
So I disabled its option to use a lightwight component.
Now, the popup menu is always drawn on top of glasspane and responds.
But . . . now
. . . sometimes, tooltips are drawn behind the popup menu!
Is there any simple fix for this problem?

The problem is inside the PopupFactory :
    private int getPopupType(Component owner, Component contents,
                             int ownerX, int ownerY) {
        int popupType = getPopupType();
     if (owner == null || invokerInHeavyWeightPopup(owner)) {
         popupType = HEAVY_WEIGHT_POPUP;
        else if (popupType == LIGHT_WEIGHT_POPUP &&
                 !(contents instanceof JToolTip) &&
                 !(contents instanceof JPopupMenu)) {
            popupType = MEDIUM_WEIGHT_POPUP;
     return popupType;
    }The weight of the ToolTip popup is determined by its parent -- in your case, the parent is a menuitem which is light-weight regardless of how you set the menuitem's owner (JMenu?). If you don't want to write your own ToolTipManager, you'll have to find a way to set the weight of the JMenuItems!
;o)
V.V.

Similar Messages

  • Tooltip widget bug? Shows up correctly in Muse preview, distorted content on business catalyst.

    This is a cross question from Adobe Muse Bugs, as it also affects business catalyst.
    I have 3 panels on my tooltip.
    3 different descriptions for each one.
    Preview mode shows up accurately on what I have designed, but when uploaded to business catalyst, only the distorted description from the first tooltip panel shows up.
    The descriptions are really just rasterised text, with a translucent rectangle behind it.
    This issue is not observed when viewing exported html file. Browser used to test is Google Chrome
    What is the problem here? The widget? Muse? Business Catalyst? Chrome? And how do I fix it?
    I'm not sure how I'd upload the html files here, but the link for the hosted site on Business Catalyst is here: Home

    Ok, I've checked the site linked here with Safari.
    It works normally, so I'm thinking it's a Chrome problem.

  • JPopupMenu bug...

    I have a JFrame with a JPopupMenu on a right mouse click. At the bottom of the menu, there is an extra item that appears to be just outside the menu's border. The text is: "Java Applet Window".
    Our webserver is tomcat and the IDE is JBuilder version 4.0.152.0. When running from the IDE, the problem is not present. It's not showing up anywhere else within the product either.
    Any thoughts on how to get rid of it?

    What version of the JDK/JRE are you using when the problem occurs. I'm pretty sure that this was a bug fixed in JDK1.3. If you're stuck with an older version of Swing Tim Endres wrote some GPLed code to get around the problem. Take a look here http://www.gjt.org/servlets/JCVSlet/show/ice/com/ice/util/JFCUtilities.java/1.1
    Col

  • JPopupMenu bug 4245587

    This bug details a problem where the popup menus appear 'behind' the windows taskbar if the popup appears at a place where it may be obscured. Various work-arounds have been posted and I have one that works (just). My issue with this is more general. The bug reports that the problem is fixed and the bug has been closed (although no date is given for when this happened). The release fixed is detailed as 'Hopper'. My question is this... How do we now what public release (if any) this fix appears or will appear in. It seems to me that the process is a bit flawed if developers have no way of knowing if fixes have been made. Comments, suggestion (yes even flames if you think I have missed the point) welcome.
    Cheers,
    Paul Brickell

    What version of the JDK/JRE are you using when the problem occurs. I'm pretty sure that this was a bug fixed in JDK1.3. If you're stuck with an older version of Swing Tim Endres wrote some GPLed code to get around the problem. Take a look here http://www.gjt.org/servlets/JCVSlet/show/ice/com/ice/util/JFCUtilities.java/1.1
    Col

  • Possible Bug When Binding Data to ContentPresenter ToolTip Attribute

    Hello everyone,
    I'm developing a small application using WPF. I have a custom ListBox control which contains a number of CheckBox entries paired up with a ContentPresenter object which displays some text obtained from a custom generic object.
    If I bind the ContentPresenter 'Content' node to one of the properties of my class, it will display the text I want correctly. However, I cannot do the same with its 'ToolTip' attribute.
    Here's an excerpt of my XAML.
    <Window.Resources>
    <local:SandboxProfiles x:Key="profiles"/>
    <DataTemplate x:Key="ListBoxItemTemplate">
    <!-- The ToolTip attribute doesn't accept dynamic data bindings (maybe a bug?) within the ContentPresenter node.
    Therefore, the attribute has to be inserted in the parent node (WrapPanel) for it to work. -->
    <WrapPanel ToolTip="{Binding Element.FriendlyDescription}">
    <CheckBox IsChecked="{Binding IsSelected}" VerticalAlignment="Center" />
    <ContentPresenter Content="{Binding Element.TypeString, Mode=OneTime}" Margin="2,0" />
    </WrapPanel>
    </DataTemplate>
    </Window.Resources>
    This line works absolutely fine like this,
    <ContentPresenter Content="{Binding Element.TypeString, Mode=OneTime}" Margin="2,0" />
    However, this doesn't work
    <ContentPresenter Content="{Binding Element.TypeString, Mode=OneTime}" ToolTip={Binding Element.TypeString} Margin="2,0" />
    Note I'm using the exact same pattern here, only that I'm applying it to the ToolTip attribute instead of Content. This doesn't work. It compiles, no exceptions, but no tooltip is displayed.
    However, if I bind the ToolTip attribute of the CheckBox node or the parent WrapPanel node in the exact same way, it
    does work. This works,
    <WrapPanel ToolTip="{Binding Element.TypeString}">
    And this works too,
    <CheckBox IsChecked="{Binding IsSelected}" ToolTip="{Binding Element.TypeString}" VerticalAlignment="Center" />
    I've searched the documentation and nowhere does it say I should expect ContentPresenter's 'ToolTip' attribute to behave differently than with any other XAML component.
    This has led me to believe this is a bug in the WPF runtime. If, on the other hand, I'm missing something here, please, do let me know.
    Thank you.

    Your problem is because you're putting  a tooltip on a contentpresenter - which isn't going to respond to mouse over unless you get your mouse over it just so.
    You can easily reproduce that if you throw a little markup in a new mainwindow:
    <Grid Name="myGrid">
    <ContentPresenter ToolTip="Banana"/>
    </Grid>
    Substitute TextBlock for contentpresenter
    <TextBlock Text="Whatever" ToolTip="Banana"/>
    And it works easily.
    <TextBlock Text="{Binding Element.TypeString, Mode=OneTime}" Margin="2,0" />
    Maybe I'm missing something but I can't really see why you have a contentpresenter at all.
    Assuming typestring is a string as it's name rather implies.
    Hope that helps.
    Recent Technet articles:
    Property List Editing ;  
    Dynamic XAML
    Substituting the ContentPresenter node for a simple TextBlock as you said worked for me, thank you.
    But Magnus is right in that you do have mouse-over events with ContentPresenter components; only that for some reason I don't know, they only work when the ToolTip attribute is set to a hardcoded string and no bindings are happening. So it does respond to
    the mouse but it doesn't display anything that has been dynamically bound to it, for some reason.

  • Button tooltip: shows mnemonic instead of accelerator. Bug or feature?

    Hi,
    when you set a mnemonic key and an accelerator key to a button (eg. via an action) the tooltip shows the mnemonic key instead of the accelerator key (eg. for action "paste": "Alt-P" instead of "Ctrl-V"). If the mnemonic key is not present, the accelerator key is still not shown. This is neither the way I would have expect it nor the way I'm used to (eg. have a look at the toolbar buttons of the Sun's open source IDE NetBeans. They show the accelerator key!).
    Is this a bug or a feature? :-)
    -Puce

    Hi Carl -
    Button Image Attributes:
    Style = Image
    Image = <our substitution string>image.gif
    (well, that's what we'd like anyway - currently we have:
    Image = #WORKSPACE_IMAGES#image.gif)
    Many thanks.
    And, incidentally, many thanks for fixing that DHTML sublist bug in 2.2 - much appreciated.
    Regards,
    John.

  • Setting Tooltip on accordion section Does not work. Possible bug??

    HI All,
    I am using accordion control with following code.
    var oAccordion = new sap.ui.commons.Accordion("accordionA");
    //Building Section 1
    var oSection1 = new sap.ui.commons.AccordionSection( "section1" );
      oSection1.setTitle("Section 1kdfjkdasfjsdafffdfjkakfajfajfksafjdkfjdf");
    oSection1.setTooltip("Section 1");
      oSection1.setMaxHeight("100px");
      for (var i=0 ; i < 5 ; i++){  
    var oCheckBox1 = new sap.ui.commons.CheckBox( "CheckBox1"+i );
      oCheckBox1.setText("CheckBox1 "+i);
      oSection1.addContent( oCheckBox1);
    var oLabel1 = new sap.ui.commons.Label( "Label1"+i );
      oLabel1.setText("Label 1 "+i); 
      oSection1.addContent( oLabel1);
      oAccordion.addSection( oSection1 );
    Though I am setting the Tooltip. While mouse hover I don't see the tooltip.
    My thought is whenever sectionsTitle is truncated it should show the tooltip.
    Please clarify when the tooltip will be visibile.
    thank you for allyour inputs and help in advance.
    regards

    Hi there,
    It is a bug. You may use the title for each section until they get the tooltips to work.
    Regards,
    Alejandro.

  • [svn:fx-trunk] 14199: ToolTip border skin bug fix

    Revision: 14199
    Revision: 14199
    Author:   [email protected]
    Date:     2010-02-16 13:59:53 -0800 (Tue, 16 Feb 2010)
    Log Message:
    ToolTip border skin bug fix
    http://bugs.adobe.com/jira/browse/SDK-24282 - SliderDataTip instantiates it?\226?\128?\153s border class before it?\226?\128?\153s style can be set by Slider
    Modified a patch submission to follow the pattern in TextInput. When the borderSkin style changes, the border was not recreated with the new border class.
    Thanks go to David Spanton for the original submission
    QE notes: yes, need tests for this use case
    Doc notes: n/a
    Bugs: SDK-24282
    Reviewer: Kevin
    Tests run: checkintests
    Is noteworthy for integration: no
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-24282
        http://bugs.adobe.com/jira/browse/SDK-24282
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/ToolTip.as

  • MINOR BUG: Incorrect ToolTips in iTunes Store (Vista x64)

    Hi! Jon here again. Just wanted to let you know that in the iTunes Store in the 64-bit edition of iTunes 8, the ToolTips for artwork (album art, podcast art, TV show previews, etc.) don't seem to be formatted properly and therefore look a bit sloppy.
    For example, if I were to hover over the album art for Deas Vail's EP "White Lights", it says "Deas Vail, White Lightsartwork" (or sometimes it'll include the genre, too, like "Deas Vail, White Lights, Folkartwork") and the tooltip lightly flickers, as if it were loading something. This happens on all artwork across the iTunes Store, both for individual pages and group pages (the only exceptions are the Flash-like advertisements on the top of the iTunes Store pages). Functionality of the store doesn't seem to be affected, but for an Apple product, it looks a bit shabby and I think it should be fixed in the next update.

    The best way, short of getting a (free) Online Developer account with Apple, or reporting a bug is to use the iTunes feedback page:
    http://www.apple.com/feedback/itunesapp.html
    Regards.

  • Mx:ToolTip bug

    The dropShadowVisible CSS property has no effect on the mx:ToolTip. Example:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                                     xmlns:s="library://ns.adobe.com/flex/spark"
                                     xmlns:mx="library://ns.adobe.com/flex/mx">
              <fx:Style>
                        @namespace s "library://ns.adobe.com/flex/spark";
                        @namespace mx "library://ns.adobe.com/flex/mx";
                        mx|ToolTip {
                                  dropShadowVisible: false;
              </fx:Style>
              <s:Label text="Roll over to view tooltip"
                                   toolTip="As you can see the drop shadow is still visible"
                                   verticalCenter="0"
                                   horizontalCenter="0"/>
    </s:Application>

    The name is not "toolTipFunction" but rather, "dataTipFunction"
    Alex Harui
    Flex SDK Developer
    Adobe Systems Inc.
    Blog: http://blogs.adobe.com/aharui

  • Tooltips bug

    I am really sorry but I am having another issue with tooltips...
    I will show two samples, code plus result, in the first case everything is fine, in the second the tooltip tries to be smart and fails miserably: It inserts line breaks without asking and it cuts/omits/swallows text, see below. I have checked the char string using the variable view, the text has been formatted correctly and is complete. Unfortunately, it is not displayed completely.
    In effect, the only difference between the two cases is that in (1) there is a long line, the path name, that prevents the 'automatic', undocumented word wrap / line break. I have no explanation why part of the text is omitted, may be there is a default aspect ratio or a maximum of lines? Too bad...
    (1) O.K.
        char tooltip_text [ 768 ];
            sprintf ( tooltip_text,
                      "%s%s%s",
                      "Reference Spectrum File:\n\n",
                      reference_spectrum_file_list [ reference_spectrum_file_index ],
                      "\n\nDouble Click\t\t\t to open one spectrum file\n"
                      "Ctrl + Double Click\t\t to open one or more spectrum files\n"
                      "Shift + Double Click\t\t to import one data file\n"
                      "Ctrl + Shift + Double Click\t to import one or more data files\n"
                      "Alt + Double Click\t\t to open a directory of spectrum files\n"
                      "Shift + Alt + Double Click\t\t to import a directory of data files\n"
                      "Right Click\t\t\t to display a popup menu" );
            SetCtrlAttribute ( panel_handle, control_id, ATTR_TOOLTIP_TEXT, tooltip_text );
    (2) FAILURE
        char tooltip_text [ 768 ];
            sprintf ( tooltip_text,
                      "%s",
                      "Reference Spectrum File:\n\n"
                      "Double Click\t\t\t to open one spectrum file\n"
                      "Ctrl + Double Click\t\t to open one or more spectrum files\n"
                      "Shift + Double Click\t\t to import one data file\n"
                      "Ctrl + Shift + Double Click\t to import one or more data files\n"
                      "Alt + Double Click\t\t to open a directory of spectrum files\n"
                      "Shift + Alt + Double Click\t\t to import a directory of data files\n"
                      "Right Click\t\t\t to display a popup menu" );
            SetCtrlAttribute ( panel_handle, control_id, ATTR_TOOLTIP_TEXT, tooltip_text );
    Solved!
    Go to Solution.

    Hi Luis,
    Thanks for looking into it! I wouldn't mind to use spaces and a monospaced font, unfortunately this isn't possible yet. But may be my suggestions will get implemented - you see I am trying my best to gain your support

  • Is this a Pie Chart Tooltip bug? (Xcelsius 2008)

    Hi Folks,
    I have a series of pie charts on two different dashboards. Neither of them are displaying percentage of total values, instead I get only the value of the 'slice' in the pie chart.
    Any idea why? I'm nearly sure I was getting % values before.
    Thanks,
    Jeanne

    The application doesn't hang but the TextBlock ends up on top the Button when you set its Text property. That's why you cannot click on the Button.
    If you set the Text property of the TextBlock in the XAML markup you won't be able to click the Button when you run the app because of the same reason:
    <TextBlock x:Name="OutputMsg" Text="sample text"
    Margin="0,200,0,0"
    HorizontalAlignment="Center"
    FontSize="18" />
    The solution is, like you have already discovered, to put the TextBlock in the StackPanel so it ends up
    below the Button and not on top of it in the same Grid.
    Please remember to mark helpful posts as answer to close your threads and then start a new thread if you have a new question.

  • Dreamweaver adding div height in tooltip?

    I dont normally use dreamweaver, but I must for this project,
    in dreamweaver for some bizarre reason the tooltip says height 50px
    (54px) and has added 4pxs to an image in a div. Anyone know why? It
    aligns in the browsers, IE 6, firefox, but why has dreamweaver
    added these 4 pixels and given it a gap in dreamweaver?
    Picture example:
    http://homepage.ntlworld.com/spensley/dreamweaverbug.jpg
    anyone know why and what this is all about?
    The css:
    #logo{
    top: 30px;
    width:126px;
    height: 51px;
    padding:0px;
    float: left;
    html:
    <div id="logo"><a href="index.html"><img
    src="media/images/gtfLogo.jpg" title="GTF logo" alt="GTF logo
    design" longdesc="three circles showing the letters G, T and F in
    orange and green" width="126"
    height="51"/><a/></div>

    Oops - sorry - missed the CSS.
    You have a munged <a> tag -
    orange and green" width="126" height="51"/><a/></
    should be -
    orange and green" width="126" height="51"/></a></
    Does that solve the problem?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "spongebobcirclepants" <[email protected]>
    wrote in message
    news:[email protected]...
    > <?xml version="1.0" encoding="utf-8"?>
    > <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Strict//EN"
    > "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    > <html xmlns="
    http://www.w3.org/1999/xhtml"
    xml:lang="en" lang="en">
    > <head>
    > <title>GTF - Gardens, Tools &
    Furniture</title>
    > <meta http-equiv="Content-Type" content="text/html;
    charset=UTF-8" />
    > <meta name="keywords"
    >
    content="tools,gardens,furniture,spades,water,toys,toy,gardening,uk,giant
    >
    toys,giant,lawnmowers,tool,diy,outdoor,outdoors,pool,shovels,hoses,hose,fish,aqu
    > atics,benches,tables,chairs" />
    > <meta name="description" content="GTF Company Site"
    />
    > <meta name="author" content="Roy Spensley" />
    >
    > <link rel="stylesheet" type="text/css"
    href="style/textformat.css"/>
    > <link rel="stylesheet" type="text/css"
    href="style/layout.css"
    > title="default"
    > />
    >
    > </head>
    >
    > <div id="wrapper">
    >
    > <div id="topSpace"></div>
    > <div id="logo"><a href="index.html"><img
    src="media/images/gtfLogo.jpg"
    > title="GTF logo" alt="GTF logo design" longdesc="three
    circles showing the
    > letters G, T and F in orange and green" width="126"
    > height="51"/><a/></div>
    > <div id="logoRight"></div>
    > </div>
    > </body>
    > </html>
    >
    >
    > css
    >
    >
    >
    > /*BODY*/
    >
    > body{
    >
    > margin-top:0px;
    >
    > margin:0px;
    >
    > left:0px;
    >
    > padding:0px;
    >
    > font-family: arial, Helvetica, sans-serif;
    >
    > font-size: 100.1%;/*fixes bug in IE*/
    >
    > color:#333333;
    >
    > text-align: center;
    >
    > background-color: #666666;
    >
    > overflow: auto;
    >
    > }
    >
    > /*ALL IMAGES*/
    >
    > img{
    >
    > border-style: none;
    >
    > }
    >
    >
    > /*CONTAINING WRAPPER*/
    >
    > #wrapper{
    >
    > width: 800px;
    >
    > margin-top: 0px;
    >
    > height: 597px;
    >
    > background-color: #000;
    >
    > margin: 0 auto; /*This will now centre in firefox as
    well*/
    >
    > }
    >
    > #topSpace{
    >
    > width: 100%;
    >
    > height: 30px;
    >
    > padding:0px;
    >
    > background-color: #fff;
    > }
    >
    > #logo{
    >
    > top: 30px;
    >
    > width:126px;
    >
    > height: 51px;
    >
    > padding:0px;
    >
    > float: left;
    >
    > }
    >

  • How do I use Tooltip in a thread?

    Hello Everyone.
    I'm trying to use Tooltip in a (added) thread, but I've got IlligalStateException.
    Task task = new Task<Void>() {
        @Override
        protected Void call() throws Exception {
            Tooltip tooltip = new Tooltip();
            return null;
    new Tread(task).start();NetBeans 7.1
    JDK 1.6.0_30
    JavaFX 2.0.1
    I can use other controls (like Button, etc).
    Thank you in advance.

    How do I use Tooltip in a thread? You can only create Tooltips on the JavaFX Application Thread due to this bug: http://javafx-jira.kenai.com/browse/RT-17716

  • Bug or Feature, gnome increases lcd brightness on laptop random?

    When on battery, I dim the light on the lcd using the fn-f5 and fn-f6 button. This is all good. To save battery right. Sometimes, completely randomly it seems the brightness is turned to 100%. I used dbus-listen to snatch this up:
    signal sender=:1.18 -> dest=(null destination) serial=40 path=/org/gnome/PowerManager/Backlight; interface=org.gnome.PowerManager.Backlight; member=BrightnessChanged
    uint32 100
    So I know that it is indeed gnome power manager that causes this to happen. Note that I have deactivated any control of the lcd while on battery. Such as dim light when idle, and reduce light when on battery. It is random, because I can't force it to happen again myself.
    Note: Just now when I had the display turned down, and took a pause from typing this post the brightness increased by itself to 100% without me even touching the keyboard.
    The following was printed to dbus-listen:
    signal sender=:1.18 -> dest=(null destination) serial=41 path=/org/gnome/PowerManager/Backlight; interface=org.gnome.PowerManager.Backlight; member=BrightnessChanged
    uint32 100
    signal sender=:1.18 -> dest=(null destination) serial=42 path=/org/gnome/PowerManager/Backlight; interface=org.gnome.PowerManager.Backlight; member=BrightnessChanged
    uint32 100
    It would be nice to fix this, it is slightly annoying.
    Update: I ran gnome-power-manager in verbose if that provides more useful info:
    TI:13:55:58    TH:0x10f6090    FI:egg-debug.c    FN:egg_debug_init,306
    - Verbose debugging 1 (on console 0)GPM_VERBOSE
    TI:13:55:58    TH:0x10f6090    FI:gpm-main.c    FN:main,210
    - GNOME Power Manager 2.30.1
    TI:13:55:58    TH:0x10f6090    FI:gpm-session.c    FN:gpm_session_init,511
    - idle: 0, idle_inhibited: 0, suspend_inhibited: 0
    TI:13:55:58    TH:0x10f6090    FI:gpm-session.c    FN:gpm_session_register_client,367
    - registered startup '(null)' to client id '/org/gnome/SessionManager/Client12'
    TI:13:55:58    TH:0x10f6090    FI:egg-console-kit.c    FN:egg_console_kit_init,305
    - ConsoleKit session ID: /org/freedesktop/ConsoleKit/Session4
    TI:13:55:58    TH:0x10f6090    FI:gpm-button.c    FN:gpm_button_grab_keystring,176
    - Grabbed modmask=8000, keycode=124
    TI:13:55:58    TH:0x10f6090    FI:gpm-button.c    FN:gpm_button_grab_keystring,176
    - Grabbed modmask=8000, keycode=213
    TI:13:55:58    TH:0x10f6090    FI:gpm-button.c    FN:gpm_button_grab_keystring,176
    - Grabbed modmask=8000, keycode=150
    *** WARNING ***
    TI:13:55:58    TH:0x10f6090    FI:gpm-button.c    FN:gpm_button_xevent_key,203
    - could not map keysym 1008ffa8 to keycode
    TI:13:55:58    TH:0x10f6090    FI:gpm-button.c    FN:gpm_button_grab_keystring,176
    - Grabbed modmask=8000, keycode=233
    TI:13:55:58    TH:0x10f6090    FI:gpm-button.c    FN:gpm_button_grab_keystring,176
    - Grabbed modmask=8000, keycode=232
    TI:13:55:58    TH:0x10f6090    FI:gpm-button.c    FN:gpm_button_grab_keystring,176
    - Grabbed modmask=8000, keycode=160
    TI:13:55:58    TH:0x10f6090    FI:gpm-button.c    FN:gpm_button_grab_keystring,176
    - Grabbed modmask=8000, keycode=244
    TI:13:55:58    TH:0x10f6090    FI:gpm-button.c    FN:gpm_button_grab_keystring,176
    - Grabbed modmask=8000, keycode=238
    TI:13:55:58    TH:0x10f6090    FI:gpm-button.c    FN:gpm_button_grab_keystring,176
    - Grabbed modmask=8000, keycode=237
    TI:13:55:58    TH:0x10f6090    FI:gpm-button.c    FN:gpm_button_grab_keystring,176
    - Grabbed modmask=8000, keycode=236
    TI:13:55:58    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_update_cache,628
    - screen 1 of 1
    TI:13:55:58    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_update_cache,633
    - watching ::monitors_changed on 0x10fd210
    TI:13:55:58    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_update_cache,653
    - adding resource 0x1197210
    TI:13:55:58    TH:0x10f6090    FI:gpm-brightness.c    FN:gpm_brightness_init,436
    - detected XRANDR hardware
    TI:13:55:58    TH:0x10f6090    FI:gpm-prefs-server.c    FN:gpm_prefs_server_set_capability,84
    - capability now 4
    TI:13:55:58    TH:0x10f6090    FI:gpm-prefs-server.c    FN:gpm_prefs_server_set_capability,84
    - capability now 5
    TI:13:55:58    TH:0x10f6090    FI:gpm-idle.c    FN:gpm_idle_evaluate,187
    - session_idle=0, idle_inhibited=0, suspend_inhibited=0, x_idle=0
    TI:13:55:58    TH:0x10f6090    FI:gpm-idle.c    FN:gpm_idle_evaluate,192
    - X not idle
    TI:13:55:58    TH:0x10f6090    FI:gpm-idle.c    FN:gpm_idle_set_timeout_dim,261
    - Setting dim idle timeout: 10s
    TI:13:55:58    TH:0x10f6090    FI:gpm-dpms.c    FN:gpm_dpms_clear_timeouts,311
    - set timeouts to zero
    TI:13:55:58    TH:0x10f6090    FI:gpm-backlight.c    FN:gpm_backlight_brightness_evaluate_and_set,300
    - 1. main brightness 1.000000
    TI:13:55:58    TH:0x10f6090    FI:gpm-backlight.c    FN:gpm_backlight_brightness_evaluate_and_set,320
    - 2. battery scale 1.000000, brightness 1.000000
    TI:13:55:58    TH:0x10f6090    FI:gpm-backlight.c    FN:gpm_backlight_brightness_evaluate_and_set,338
    - 3. idle scale 1.000000, brightness 1.000000
    TI:13:55:58    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_foreach_screen,448
    - using resource 0x1197210
    TI:13:55:58    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_foreach_resource,410
    - resource 1 of 5
    TI:13:55:58    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_foreach_resource,410
    - resource 2 of 5
    TI:13:55:58    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_output_get_percentage,252
    - hard value=7, min=0, max=15
    TI:13:55:58    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_output_get_percentage,254
    - percentage 46
    TI:13:55:58    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_foreach_resource,410
    - resource 3 of 5
    TI:13:55:58    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_foreach_resource,410
    - resource 4 of 5
    TI:13:55:58    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_foreach_resource,410
    - resource 5 of 5
    *** WARNING ***
    TI:13:55:58    TH:0x10f6090    FI:gpm-brightness.c    FN:gpm_brightness_trust_cache,107
    - using cache for value 46 (probably okay)
    TI:13:55:58    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_foreach_screen,448
    - using resource 0x1197210
    TI:13:55:58    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_foreach_resource,410
    - resource 1 of 5
    TI:13:55:58    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_foreach_resource,410
    - resource 2 of 5
    TI:13:55:58    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_output_set,349
    - percent=100, absolute=15
    TI:13:55:58    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_output_set,351
    - hard value=7, min=0, max=15
    TI:13:55:58    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_output_set,366
    - using step of 1
    TI:13:55:58    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_foreach_resource,410
    - resource 3 of 5
    TI:13:55:58    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_foreach_resource,410
    - resource 4 of 5
    TI:13:55:58    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_foreach_resource,410
    - resource 5 of 5
    TI:13:55:58    TH:0x10f6090    FI:gpm-backlight.c    FN:gpm_backlight_brightness_evaluate_and_set,361
    - emitting brightness-changed : 100
    TI:13:55:58    TH:0x10f6090    FI:gpm-idle.c    FN:gpm_idle_set_check_cpu,122
    - Setting the CPU load check to 0
    TI:13:55:58    TH:0x10f6090    FI:gpm-manager.c    FN:gpm_manager_init,1950
    - creating new control instance
    TI:13:55:58    TH:0x10f6090    FI:gpm-manager.c    FN:gpm_manager_init,1955
    - creating new tray icon
    TI:13:55:58    TH:0x10f6090    FI:gpm-phone.c    FN:gpm_phone_dbus_connect,242
    - get connection
    TI:13:55:58    TH:0x10f6090    FI:gpm-phone.c    FN:gpm_phone_dbus_connect,253
    - get proxy
    *** WARNING ***
    TI:13:55:58    TH:0x10f6090    FI:gpm-phone.c    FN:gpm_phone_dbus_connect,261
    - Cannot connect, maybe the daemon is not running: Could not get owner of name 'org.gnome.phone': no such name
    TI:13:55:58    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_init,1120
    - Using per-time notification policy
    TI:13:55:58    TH:0x10f6090    FI:gpm-idle.c    FN:gpm_idle_set_timeout_blank,282
    - Setting blank idle timeout: 600s
    TI:13:55:58    TH:0x10f6090    FI:gpm-idle.c    FN:gpm_idle_evaluate,187
    - session_idle=0, idle_inhibited=0, suspend_inhibited=0, x_idle=0
    TI:13:55:58    TH:0x10f6090    FI:gpm-idle.c    FN:gpm_idle_evaluate,192
    - X not idle
    TI:13:55:58    TH:0x10f6090    FI:gpm-idle.c    FN:gpm_idle_set_timeout_sleep,299
    - Setting sleep idle timeout: 0s
    TI:13:55:58    TH:0x10f6090    FI:gpm-idle.c    FN:gpm_idle_evaluate,187
    - session_idle=0, idle_inhibited=0, suspend_inhibited=0, x_idle=0
    TI:13:55:58    TH:0x10f6090    FI:gpm-idle.c    FN:gpm_idle_evaluate,192
    - X not idle
    TI:13:55:58    TH:0x10f6090    FI:gpm-disks.c    FN:gpm_disks_set_spindown_timeout,132
    - registered udisks_inhibitor_13 (60)
    TI:13:55:58    TH:0x10f6090    FI:gpm-screensaver.c    FN:gpm_screensaver_add_throttle,224
    - adding throttle reason: 'On battery power': id 36075059
    TI:13:55:58    TH:0x10f6090    FI:gpm-prefs-server.c    FN:gpm_prefs_server_set_capability,84
    - capability now 13
    *** WARNING ***
    TI:13:55:58    TH:0x10f6090    FI:gpm-phone.c    FN:gpm_phone_coldplug,76
    - not connected
    TI:13:55:58    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_get_composite_device,595
    - using original device as only one primary battery
    TI:13:55:58    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_get_composite_device,595
    - using original device as only one primary battery
    TI:13:55:58    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_get_composite_device,595
    - using original device as only one primary battery
    TI:13:55:58    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_get_composite_device,595
    - using original device as only one primary battery
    TI:13:55:58    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_get_composite_device,595
    - using original device as only one primary battery
    TI:13:55:58    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_get_composite_device,595
    - using original device as only one primary battery
    TI:13:55:58    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_get_composite_device,595
    - using original device as only one primary battery
    TI:13:55:58    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_get_composite_device,595
    - using original device as only one primary battery
    TI:13:55:58    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_get_composite_device,595
    - using original device as only one primary battery
    TI:13:55:58    TH:0x10f6090    FI:gpm-upower.c    FN:gpm_upower_get_device_icon,203
    - got filename: gpm-battery-080
    TI:13:55:58    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_recalculate_state_icon,438
    - ** EMIT: icon-changed: gpm-battery-080
    TI:13:55:58    TH:0x10f6090    FI:gpm-tray-icon.c    FN:gpm_tray_icon_set_icon,129
    - Setting icon to gpm-battery-080
    TI:13:55:58    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_get_summary,264
    - tooltip: Laptop battery 7 hours 40 minutes remaining (81.4%)
    TI:13:55:58    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_recalculate_state_summary,470
    - ** EMIT: summary-changed(1): Laptop battery 7 hours 40 minutes remaining (81.4%)
    TI:13:55:58    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_device_add,746
    - adding /org/freedesktop/UPower/devices/battery_BAT0 with state discharging
    TI:13:55:58    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_device_add,750
    - updating because we added a device
    TI:13:55:58    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_update_composite_device,651
    - printing device 0
      native-path:          /sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0A:00/power_supply/BAT0
      vendor:               ASUSTEK
      model:                UL50-56
      power supply:         yes
      updated:              Wed 16 Jun 2010 01:55:45 PM CEST (13 seconds ago)
      has history:          yes
      has statistics:       yes
      battery
        present:             yes
        rechargeable:        yes
        state:               discharging
        energy:              65.985 Wh
        energy-empty:        0 Wh
        energy-full:         81.06 Wh
        energy-full-design:  84 Wh
        energy-rate:         8.58 W
        voltage:             16.086 V
        time to empty:       7.7 hours
        percentage:          81.4027%
        capacity:            95.6964%
        technology:          lithium-ion
      History (charge):
        1276689345    81.403    discharging
        1276689315    81.495    discharging
        1276689285    81.588    discharging
        1276689255    81.680    discharging
      History (rate):
        1276689345    8.580    discharging
        1276689315    8.790    discharging
        1276689285    8.775    discharging
        1276689255    9.480    discharging
    TI:13:55:58    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_update_composite_device,672
    - using original device as only one primary battery
    TI:13:55:58    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_device_add,746
    - adding /org/freedesktop/UPower/devices/line_power_AC0 with state unknown
    TI:13:56:15    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_device_changed_cb,905
    - updating because /org/freedesktop/UPower/devices/battery_BAT0 changed
    TI:13:56:15    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_update_composite_device,651
    - printing device 0
      native-path:          /sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0A:00/power_supply/BAT0
      vendor:               ASUSTEK
      model:                UL50-56
      power supply:         yes
      updated:              Wed 16 Jun 2010 01:56:15 PM CEST (0 seconds ago)
      has history:          yes
      has statistics:       yes
      battery
        present:             yes
        rechargeable:        yes
        state:               discharging
        energy:              65.895 Wh
        energy-empty:        0 Wh
        energy-full:         81.06 Wh
        energy-full-design:  84 Wh
        energy-rate:         9.045 W
        voltage:             16.077 V
        time to empty:       7.3 hours
        percentage:          81.2916%
        capacity:            95.6964%
        technology:          lithium-ion
      History (charge):
        1276689375    81.292    discharging
        1276689345    81.403    discharging
        1276689315    81.495    discharging
        1276689285    81.588    discharging
      History (rate):
        1276689375    9.045    discharging
        1276689345    8.580    discharging
        1276689315    8.790    discharging
        1276689285    8.775    discharging
    TI:13:56:15    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_update_composite_device,672
    - using original device as only one primary battery
    TI:13:56:15    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_device_changed_cb,914
    - /org/freedesktop/UPower/devices/battery_BAT0 state is now discharging
    TI:13:56:15    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_get_composite_device,595
    - using original device as only one primary battery
    TI:13:56:15    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_get_composite_device,595
    - using original device as only one primary battery
    TI:13:56:15    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_get_composite_device,595
    - using original device as only one primary battery
    TI:13:56:15    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_get_composite_device,595
    - using original device as only one primary battery
    TI:13:56:15    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_get_composite_device,595
    - using original device as only one primary battery
    TI:13:56:15    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_get_composite_device,595
    - using original device as only one primary battery
    TI:13:56:15    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_get_composite_device,595
    - using original device as only one primary battery
    TI:13:56:15    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_get_composite_device,595
    - using original device as only one primary battery
    TI:13:56:15    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_get_composite_device,595
    - using original device as only one primary battery
    TI:13:56:15    TH:0x10f6090    FI:gpm-upower.c    FN:gpm_upower_get_device_icon,203
    - got filename: gpm-battery-080
    TI:13:56:15    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_recalculate_state_icon,453
    - no change
    TI:13:56:15    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_get_summary,264
    - tooltip: Laptop battery 7 hours 15 minutes remaining (81.3%)
    TI:13:56:15    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_recalculate_state_summary,478
    - ** EMIT: summary-changed(2): Laptop battery 7 hours 15 minutes remaining (81.3%)
    TI:13:56:45    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_device_changed_cb,905
    - updating because /org/freedesktop/UPower/devices/battery_BAT0 changed
    TI:13:56:45    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_update_composite_device,651
    - printing device 0
      native-path:          /sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0A:00/power_supply/BAT0
      vendor:               ASUSTEK
      model:                UL50-56
      power supply:         yes
      updated:              Wed 16 Jun 2010 01:56:45 PM CEST (0 seconds ago)
      has history:          yes
      has statistics:       yes
      battery
        present:             yes
        rechargeable:        yes
        state:               discharging
        energy:              65.82 Wh
        energy-empty:        0 Wh
        energy-full:         81.06 Wh
        energy-full-design:  84 Wh
        energy-rate:         8.505 W
        voltage:             16.082 V
        time to empty:       7.7 hours
        percentage:          81.1991%
        capacity:            95.6964%
        technology:          lithium-ion
      History (charge):
        1276689405    81.199    discharging
        1276689375    81.292    discharging
        1276689345    81.403    discharging
        1276689315    81.495    discharging
      History (rate):
        1276689405    8.505    discharging
        1276689375    9.045    discharging
        1276689345    8.580    discharging
        1276689315    8.790    discharging
    TI:13:56:45    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_update_composite_device,672
    - using original device as only one primary battery
    TI:13:56:45    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_device_changed_cb,914
    - /org/freedesktop/UPower/devices/battery_BAT0 state is now discharging
    TI:13:56:45    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_get_composite_device,595
    - using original device as only one primary battery
    TI:13:56:45    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_get_composite_device,595
    - using original device as only one primary battery
    TI:13:56:45    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_get_composite_device,595
    - using original device as only one primary battery
    TI:13:56:45    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_get_composite_device,595
    - using original device as only one primary battery
    TI:13:56:45    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_get_composite_device,595
    - using original device as only one primary battery
    TI:13:56:45    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_get_composite_device,595
    - using original device as only one primary battery
    TI:13:56:45    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_get_composite_device,595
    - using original device as only one primary battery
    TI:13:56:45    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_get_composite_device,595
    - using original device as only one primary battery
    TI:13:56:45    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_get_composite_device,595
    - using original device as only one primary battery
    TI:13:56:45    TH:0x10f6090    FI:gpm-upower.c    FN:gpm_upower_get_device_icon,203
    - got filename: gpm-battery-080
    TI:13:56:45    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_recalculate_state_icon,453
    - no change
    TI:13:56:45    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_get_summary,264
    - tooltip: Laptop battery 7 hours 40 minutes remaining (81.2%)
    TI:13:56:45    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_recalculate_state_summary,478
    - ** EMIT: summary-changed(2): Laptop battery 7 hours 40 minutes remaining (81.2%)
    TI:13:57:15    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_device_changed_cb,905
    - updating because /org/freedesktop/UPower/devices/battery_BAT0 changed
    TI:13:57:15    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_update_composite_device,651
    - printing device 0
      native-path:          /sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0A:00/power_supply/BAT0
      vendor:               ASUSTEK
      model:                UL50-56
      power supply:         yes
      updated:              Wed 16 Jun 2010 01:57:15 PM CEST (0 seconds ago)
      has history:          yes
      has statistics:       yes
      battery
        present:             yes
        rechargeable:        yes
        state:               discharging
        energy:              65.745 Wh
        energy-empty:        0 Wh
        energy-full:         81.06 Wh
        energy-full-design:  84 Wh
        energy-rate:         9.345 W
        voltage:             16.054 V
        time to empty:       7.0 hours
        percentage:          81.1066%
        capacity:            95.6964%
        technology:          lithium-ion
      History (charge):
        1276689435    81.107    discharging
        1276689405    81.199    discharging
        1276689375    81.292    discharging
        1276689345    81.403    discharging
      History (rate):
        1276689435    9.345    discharging
        1276689405    8.505    discharging
        1276689375    9.045    discharging
        1276689345    8.580    discharging
    TI:13:57:15    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_update_composite_device,672
    - using original device as only one primary battery
    TI:13:57:15    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_device_changed_cb,914
    - /org/freedesktop/UPower/devices/battery_BAT0 state is now discharging
    TI:13:57:15    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_get_composite_device,595
    - using original device as only one primary battery
    TI:13:57:15    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_get_composite_device,595
    - using original device as only one primary battery
    TI:13:57:15    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_get_composite_device,595
    - using original device as only one primary battery
    TI:13:57:15    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_get_composite_device,595
    - using original device as only one primary battery
    TI:13:57:15    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_get_composite_device,595
    - using original device as only one primary battery
    TI:13:57:15    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_get_composite_device,595
    - using original device as only one primary battery
    TI:13:57:15    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_get_composite_device,595
    - using original device as only one primary battery
    TI:13:57:15    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_get_composite_device,595
    - using original device as only one primary battery
    TI:13:57:15    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_get_composite_device,595
    - using original device as only one primary battery
    TI:13:57:15    TH:0x10f6090    FI:gpm-upower.c    FN:gpm_upower_get_device_icon,203
    - got filename: gpm-battery-080
    TI:13:57:15    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_recalculate_state_icon,453
    - no change
    TI:13:57:15    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_get_summary,264
    - tooltip: Laptop battery 7 hours remaining (81.1%)
    TI:13:57:15    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_recalculate_state_summary,478
    - ** EMIT: summary-changed(2): Laptop battery 7 hours remaining (81.1%)
    TI:13:57:24    TH:0x10f6090    FI:gpm-idle.c    FN:gpm_idle_idletime_alarm_expired_cb,338
    - idletime alarm: 1
    TI:13:57:24    TH:0x10f6090    FI:gpm-idle.c    FN:gpm_idle_evaluate,187
    - session_idle=0, idle_inhibited=0, suspend_inhibited=0, x_idle=1
    TI:13:57:24    TH:0x10f6090    FI:gpm-idle.c    FN:gpm_idle_evaluate,221
    - normal to dim
    TI:13:57:24    TH:0x10f6090    FI:gpm-idle.c    FN:gpm_idle_set_mode,108
    - Doing a state transition: dim
    TI:13:57:24    TH:0x10f6090    FI:gpm-backlight.c    FN:gpm_backlight_notify_system_idle_changed,530
    - we were active for 85.418504s
    TI:13:57:24    TH:0x10f6090    FI:gpm-backlight.c    FN:gpm_backlight_notify_system_idle_changed,533
    - changing powersave idle status to 1
    TI:13:57:24    TH:0x10f6090    FI:gpm-backlight.c    FN:gpm_backlight_brightness_evaluate_and_set,300
    - 1. main brightness 1.000000
    TI:13:57:24    TH:0x10f6090    FI:gpm-backlight.c    FN:gpm_backlight_brightness_evaluate_and_set,320
    - 2. battery scale 1.000000, brightness 1.000000
    TI:13:57:24    TH:0x10f6090    FI:gpm-backlight.c    FN:gpm_backlight_brightness_evaluate_and_set,338
    - 3. idle scale 1.000000, brightness 1.000000
    TI:13:57:24    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_foreach_screen,448
    - using resource 0x1197210
    TI:13:57:24    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_foreach_resource,410
    - resource 1 of 5
    TI:13:57:24    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_foreach_resource,410
    - resource 2 of 5
    TI:13:57:24    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_output_get_percentage,252
    - hard value=7, min=0, max=15
    TI:13:57:24    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_output_get_percentage,254
    - percentage 46
    TI:13:57:24    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_foreach_resource,410
    - resource 3 of 5
    TI:13:57:24    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_foreach_resource,410
    - resource 4 of 5
    TI:13:57:24    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_foreach_resource,410
    - resource 5 of 5
    *** WARNING ***
    TI:13:57:24    TH:0x10f6090    FI:gpm-brightness.c    FN:gpm_brightness_trust_cache,107
    - using cache for value 46 (probably okay)
    TI:13:57:24    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_foreach_screen,448
    - using resource 0x1197210
    TI:13:57:24    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_foreach_resource,410
    - resource 1 of 5
    TI:13:57:24    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_foreach_resource,410
    - resource 2 of 5
    TI:13:57:24    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_output_set,349
    - percent=100, absolute=15
    TI:13:57:24    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_output_set,351
    - hard value=7, min=0, max=15
    TI:13:57:24    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_output_set,366
    - using step of 1
    TI:13:57:24    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_foreach_resource,410
    - resource 3 of 5
    TI:13:57:24    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_foreach_resource,410
    - resource 4 of 5
    TI:13:57:24    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_foreach_resource,410
    - resource 5 of 5
    TI:13:57:24    TH:0x10f6090    FI:gpm-backlight.c    FN:gpm_backlight_brightness_evaluate_and_set,361
    - emitting brightness-changed : 100
    TI:13:57:24    TH:0x10f6090    FI:gpm-idle.c    FN:gpm_idle_evaluate,229
    - setting up blank callback for 600s
    TI:13:57:27    TH:0x10f6090    FI:gpm-idle.c    FN:gpm_idle_idletime_reset_cb,353
    - idletime reset
    TI:13:57:27    TH:0x10f6090    FI:gpm-idle.c    FN:gpm_idle_evaluate,187
    - session_idle=0, idle_inhibited=0, suspend_inhibited=0, x_idle=0
    TI:13:57:27    TH:0x10f6090    FI:gpm-idle.c    FN:gpm_idle_set_mode,108
    - Doing a state transition: normal
    TI:13:57:27    TH:0x10f6090    FI:gpm-backlight.c    FN:gpm_backlight_notify_system_idle_changed,508
    - we have just been idle for 3.528874s
    TI:13:57:27    TH:0x10f6090    FI:gpm-backlight.c    FN:gpm_backlight_notify_system_idle_changed,515
    - increasing idle dim time to 20s
    TI:13:57:27    TH:0x10f6090    FI:gpm-idle.c    FN:gpm_idle_set_timeout_dim,261
    - Setting dim idle timeout: 20s
    TI:13:57:27    TH:0x10f6090    FI:gpm-backlight.c    FN:gpm_backlight_notify_system_idle_changed,533
    - changing powersave idle status to 0
    TI:13:57:27    TH:0x10f6090    FI:gpm-backlight.c    FN:gpm_backlight_brightness_evaluate_and_set,300
    - 1. main brightness 1.000000
    TI:13:57:27    TH:0x10f6090    FI:gpm-backlight.c    FN:gpm_backlight_brightness_evaluate_and_set,320
    - 2. battery scale 1.000000, brightness 1.000000
    TI:13:57:27    TH:0x10f6090    FI:gpm-backlight.c    FN:gpm_backlight_brightness_evaluate_and_set,338
    - 3. idle scale 1.000000, brightness 1.000000
    TI:13:57:27    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_foreach_screen,448
    - using resource 0x1197210
    TI:13:57:27    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_foreach_resource,410
    - resource 1 of 5
    TI:13:57:27    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_foreach_resource,410
    - resource 2 of 5
    TI:13:57:27    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_output_get_percentage,252
    - hard value=7, min=0, max=15
    TI:13:57:27    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_output_get_percentage,254
    - percentage 46
    TI:13:57:27    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_foreach_resource,410
    - resource 3 of 5
    TI:13:57:27    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_foreach_resource,410
    - resource 4 of 5
    TI:13:57:27    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_foreach_resource,410
    - resource 5 of 5
    *** WARNING ***
    TI:13:57:27    TH:0x10f6090    FI:gpm-brightness.c    FN:gpm_brightness_trust_cache,107
    - using cache for value 46 (probably okay)
    TI:13:57:27    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_foreach_screen,448
    - using resource 0x1197210
    TI:13:57:27    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_foreach_resource,410
    - resource 1 of 5
    TI:13:57:27    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_foreach_resource,410
    - resource 2 of 5
    TI:13:57:27    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_output_set,349
    - percent=100, absolute=15
    TI:13:57:27    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_output_set,351
    - hard value=7, min=0, max=15
    TI:13:57:27    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_output_set,366
    - using step of 1
    TI:13:57:27    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_foreach_resource,410
    - resource 3 of 5
    TI:13:57:27    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_foreach_resource,410
    - resource 4 of 5
    TI:13:57:27    TH:0x10f6090    FI:gpm-brightness-xrandr.c    FN:gpm_brightness_xrandr_foreach_resource,410
    - resource 5 of 5
    TI:13:57:27    TH:0x10f6090    FI:gpm-backlight.c    FN:gpm_backlight_brightness_evaluate_and_set,361
    - emitting brightness-changed : 100
    TI:13:57:27    TH:0x10f6090    FI:gpm-idle.c    FN:gpm_idle_evaluate,192
    - X not idle
    TI:13:57:45    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_device_changed_cb,905
    - updating because /org/freedesktop/UPower/devices/battery_BAT0 changed
    TI:13:57:45    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_update_composite_device,651
    - printing device 0
      native-path:          /sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0A:00/power_supply/BAT0
      vendor:               ASUSTEK
      model:                UL50-56
      power supply:         yes
      updated:              Wed 16 Jun 2010 01:57:45 PM CEST (0 seconds ago)
      has history:          yes
      has statistics:       yes
      battery
        present:             yes
        rechargeable:        yes
        state:               discharging
        energy:              65.67 Wh
        energy-empty:        0 Wh
        energy-full:         81.06 Wh
        energy-full-design:  84 Wh
        energy-rate:         9.855 W
        voltage:             16.062 V
        time to empty:       6.7 hours
        percentage:          81.0141%
        capacity:            95.6964%
        technology:          lithium-ion
      History (charge):
        1276689465    81.014    discharging
        1276689435    81.107    discharging
        1276689405    81.199    discharging
        1276689375    81.292    discharging
      History (rate):
        1276689465    9.855    discharging
        1276689435    9.345    discharging
        1276689405    8.505    discharging
        1276689375    9.045    discharging
    TI:13:57:45    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_update_composite_device,672
    - using original device as only one primary battery
    TI:13:57:45    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_device_changed_cb,914
    - /org/freedesktop/UPower/devices/battery_BAT0 state is now discharging
    TI:13:57:45    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_get_composite_device,595
    - using original device as only one primary battery
    TI:13:57:45    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_get_composite_device,595
    - using original device as only one primary battery
    TI:13:57:45    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_get_composite_device,595
    - using original device as only one primary battery
    TI:13:57:45    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_get_composite_device,595
    - using original device as only one primary battery
    TI:13:57:45    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_get_composite_device,595
    - using original device as only one primary battery
    TI:13:57:45    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_get_composite_device,595
    - using original device as only one primary battery
    TI:13:57:45    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_get_composite_device,595
    - using original device as only one primary battery
    TI:13:57:45    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_get_composite_device,595
    - using original device as only one primary battery
    TI:13:57:45    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_get_composite_device,595
    - using original device as only one primary battery
    TI:13:57:45    TH:0x10f6090    FI:gpm-upower.c    FN:gpm_upower_get_device_icon,203
    - got filename: gpm-battery-080
    TI:13:57:45    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_recalculate_state_icon,453
    - no change
    TI:13:57:45    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_get_summary,264
    - tooltip: Laptop battery 6 hours 35 minutes remaining (81.0%)
    TI:13:57:45    TH:0x10f6090    FI:gpm-engine.c    FN:gpm_engine_recalculate_state_summary,478
    - ** EMIT: summary-changed(2): Laptop battery 6 hours 35 minutes remaining (81.0%)
    Not only me I see:
    https://bugzilla.gnome.org/show_bug.cgi?id=530346
    Last edited by sveinemann (2010-06-16 12:03:48)

    OK, seems it was some kind of a bug because after today's full system upgrade I'm not able to reproduce the problem I posted before, Thanks sad clown for your help!!

Maybe you are looking for

  • I want to copy and paste a chart from an email into Pages on MAC. I only get the text.  Not the chart.

    I recieved an email that included a chart that I want to put in a document.  When I copy and paste the chart in Pages it only shows the text without the chart.  This shouldnt be too hard but I have no idea why it will not copy this in the format or i

  • How to get the workitem at runtime

    Hi I have a web dynpro application from where a workflow will be started based on an event. I want to retrieve the workitem ID. How to retrive it? As per the Forums answers, I am currently using SAP_WAPI_WORKITEMS_TO_OBJECT function module to get the

  • Hiding output report columns in VA05

    Hi all, I wish to hide some of the columns in the output report of VA05. The users of that report are not supposed to be allowed to unhide them (so I think the layout function is not applicable then unless there's way to block them from choosing layo

  • About account determination in cash sales

    there are five standard criterias in account determination: chart of accounts, sales org, payer, material, and account key; my question is when i process cash sales, the five criterias maybe the same as the standard sales, how can i differentiate the

  • 8i database new install

    Hi, For starters, I am new to the Oracle world. So this question might seem a bit trivial. :-) I downloaded Personal Oracle 8i and installed it on my Laptop. Everything went well and then I went to Start -> Programs -> Oracle 81 -> Database Administr