You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@pivot.apache.org by "dutrieux (JIRA)" <ji...@apache.org> on 2010/09/12 12:48:33 UTC

[jira] Created: (PIVOT-635) Blinking effect on TextPaneDemo

Blinking effect on TextPaneDemo
-------------------------------

                 Key: PIVOT-635
                 URL: https://issues.apache.org/jira/browse/PIVOT-635
             Project: Pivot
          Issue Type: Bug
          Components: wtk
    Affects Versions: 2.0
         Environment: windows 7 x64
Java 1.6.0.21
            Reporter: dutrieux


I remark a blinking effect when I resize window on TextPaneDemo when the cursor (focus) is in TextPane component and this blinking effect disappears if the focus is on a other component.

Duto

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Issue Comment Edited: (PIVOT-635) Ficker effect on TextPaneDemo

Posted by "Olivier Dutrieux (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/PIVOT-635?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12909586#action_12909586 ] 

Olivier Dutrieux edited comment on PIVOT-635 at 9/15/10 2:47 AM:
-----------------------------------------------------------------

Your are the best, that works perfectly (no flicker) without the parameter !!!

thx

      was (Author: dutrieux):
    Your are the must, that works perfectly (no flicker) without the parameter !!!

thx
  
> Ficker effect on TextPaneDemo
> -----------------------------
>
>                 Key: PIVOT-635
>                 URL: https://issues.apache.org/jira/browse/PIVOT-635
>             Project: Pivot
>          Issue Type: Bug
>          Components: wtk
>    Affects Versions: 2.0
>         Environment: windows 7 x64
> Java 1.6.0.21
>            Reporter: Olivier Dutrieux
>
> I remark a blinking effect when I resize window on TextPaneDemo when the cursor (focus) is in TextPane component and this blinking effect disappears if the focus is on a other component.
> Duto

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (PIVOT-635) Blinking effect on TextPaneDemo

Posted by "dutrieux (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/PIVOT-635?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12908479#action_12908479 ] 

dutrieux commented on PIVOT-635:
--------------------------------

Yes I use 2.0 with last revision: 996322

I modify the source of ApplicationContext to comment lines 393 and 397. I rebuild the package and restart the TextPaneDemo, and I get always the same problem, That's no solve the problem.

> Blinking effect on TextPaneDemo
> -------------------------------
>
>                 Key: PIVOT-635
>                 URL: https://issues.apache.org/jira/browse/PIVOT-635
>             Project: Pivot
>          Issue Type: Bug
>          Components: wtk
>    Affects Versions: 2.0
>         Environment: windows 7 x64
> Java 1.6.0.21
>            Reporter: dutrieux
>
> I remark a blinking effect when I resize window on TextPaneDemo when the cursor (focus) is in TextPane component and this blinking effect disappears if the focus is on a other component.
> Duto

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Resolved: (PIVOT-635) Ficker effect on TextPaneDemo

Posted by "Greg Brown (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/PIVOT-635?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Greg Brown resolved PIVOT-635.
------------------------------

    Fix Version/s: 2.0
       Resolution: Fixed

This was indirectly fixed by another change that queues a repaint callback rather than repainting immediately.


> Ficker effect on TextPaneDemo
> -----------------------------
>
>                 Key: PIVOT-635
>                 URL: https://issues.apache.org/jira/browse/PIVOT-635
>             Project: Pivot
>          Issue Type: Bug
>          Components: wtk
>    Affects Versions: 2.0
>         Environment: windows 7 x64
> Java 1.6.0.21
>            Reporter: Olivier Dutrieux
>             Fix For: 2.0
>
>
> I remark a blinking effect when I resize window on TextPaneDemo when the cursor (focus) is in TextPane component and this blinking effect disappears if the focus is on a other component.
> Duto

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Issue Comment Edited: (PIVOT-635) Ficker effect on TextPaneDemo

Posted by "dutrieux (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/PIVOT-635?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12909410#action_12909410 ] 

dutrieux edited comment on PIVOT-635 at 9/14/10 4:00 PM:
---------------------------------------------------------

Oki If I found a solution :

I add "-Dsun.java2d.noddraw=true" to my VM parameter and that's work perfectly with no flicker.

I found some informations about that : 

"In Windows, in Swing, you will see the entire screen repaint from time to time for no apparent reason, causing an annoying flicker. This is due to the fact that Swing uses DirectDraw for rendering which periodically redraws just to be safe. You can turn off DirectDraw and use standard Windows GDI rendering by starting

Java.exe -Dsun.java2d.noddraw=true MyClass

This will slightly slow down painting, however."

You could found more information on this page :

http://java.sun.com/products/java-media/2D/perf_graphics.html

++

      was (Author: dutrieux):
    Oki If I found a solution :

I add "-Dsun.java2d.noddraw=true" to my VM parameter and that's work perfectly with no flicker.

I found some informations about that : 

"In Windows, in Swing, you will see the entire screen repaint from time to time for no apparent reason, causing an annoying flicker. This is due to the fact that Swing uses DirectDraw for rendering which periodically redraws just to be safe. You can turn off DirectDraw and use standard Windows GDI rendering by starting

Java.exe -Dsun.java2d.noddraw=true MyClass

This will slightly slow down painting, however."
  
> Ficker effect on TextPaneDemo
> -----------------------------
>
>                 Key: PIVOT-635
>                 URL: https://issues.apache.org/jira/browse/PIVOT-635
>             Project: Pivot
>          Issue Type: Bug
>          Components: wtk
>    Affects Versions: 2.0
>         Environment: windows 7 x64
> Java 1.6.0.21
>            Reporter: dutrieux
>
> I remark a blinking effect when I resize window on TextPaneDemo when the cursor (focus) is in TextPane component and this blinking effect disappears if the focus is on a other component.
> Duto

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Issue Comment Edited: (PIVOT-635) Ficker effect on TextPaneDemo

Posted by "dutrieux (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/PIVOT-635?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12909163#action_12909163 ] 

dutrieux edited comment on PIVOT-635 at 9/14/10 8:05 AM:
---------------------------------------------------------

I make some test on differents systems it's very strange :s

I test on 
 - window 7 64bits (on my staff) with a jdk1.6.0.21 x64 with no problem
 - Window xp sp3 32 bits (virtual machine) with jdk 1.6.0.18 with no problem

I seem to be my home computer have only this problem. I investigate tonight ...


      was (Author: dutrieux):
    I make some test on differents systems it's very strange :s

I test on 
 - window 7 64bits (on my staff) with a jdk1.6.0.21 x64 with no problem
 - Window xp sp3 32 bits (virtual machine) with jdk 1.6.0.18 with no problem

I seem to be my home computer have only this problem. I investigate to tonight ...

  
> Ficker effect on TextPaneDemo
> -----------------------------
>
>                 Key: PIVOT-635
>                 URL: https://issues.apache.org/jira/browse/PIVOT-635
>             Project: Pivot
>          Issue Type: Bug
>          Components: wtk
>    Affects Versions: 2.0
>         Environment: windows 7 x64
> Java 1.6.0.21
>            Reporter: dutrieux
>
> I remark a blinking effect when I resize window on TextPaneDemo when the cursor (focus) is in TextPane component and this blinking effect disappears if the focus is on a other component.
> Duto

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Issue Comment Edited: (PIVOT-635) Ficker effect on TextPaneDemo

Posted by "Olivier Dutrieux (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/PIVOT-635?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12909586#action_12909586 ] 

Olivier Dutrieux edited comment on PIVOT-635 at 9/15/10 12:32 AM:
------------------------------------------------------------------

Your are the must, that works perfectly (no flicker) without the parameter !!!

thx

      was (Author: dutrieux):
    Your are the must, I work perfectly (no flicker) without the parameter !!!

thx
  
> Ficker effect on TextPaneDemo
> -----------------------------
>
>                 Key: PIVOT-635
>                 URL: https://issues.apache.org/jira/browse/PIVOT-635
>             Project: Pivot
>          Issue Type: Bug
>          Components: wtk
>    Affects Versions: 2.0
>         Environment: windows 7 x64
> Java 1.6.0.21
>            Reporter: Olivier Dutrieux
>
> I remark a blinking effect when I resize window on TextPaneDemo when the cursor (focus) is in TextPane component and this blinking effect disappears if the focus is on a other component.
> Duto

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Issue Comment Edited: (PIVOT-635) Blinking effect on TextPaneDemo

Posted by "dutrieux (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/PIVOT-635?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12908784#action_12908784 ] 

dutrieux edited comment on PIVOT-635 at 9/13/10 12:11 PM:
----------------------------------------------------------

Os : 
   Windows 7 x64
java : 
   Java(TM) SE Runtime Environment (build 1.6.0_21-b07)
   Java HotSpot(TM) 64-Bit Server VM (build 17.0-b17, mixed mode)

I start the application TextPaneDemo, set focus to TextPane and when I resize the window I have a flicker effect. If I set the focus on a other component and resize the window I don't have the flicker effect.

Greg you can't reproduce this problem on your system ?



      was (Author: dutrieux):
    Os : 
   Windows 7 x64
java : 
   Java(TM) SE Runtime Environment (build 1.6.0_21-b07)
   Java HotSpot(TM) 64-Bit Server VM (build 17.0-b17, mixed mode)

I start the application TextPaneDemo, set focus to TextPane  and when I resize the window I have a flicker effect. If I set the focus on a other component and resize the window I don't have the flicker effect

Greg you can't reproduce this problem on you system ?


  
> Blinking effect on TextPaneDemo
> -------------------------------
>
>                 Key: PIVOT-635
>                 URL: https://issues.apache.org/jira/browse/PIVOT-635
>             Project: Pivot
>          Issue Type: Bug
>          Components: wtk
>    Affects Versions: 2.0
>         Environment: windows 7 x64
> Java 1.6.0.21
>            Reporter: dutrieux
>
> I remark a blinking effect when I resize window on TextPaneDemo when the cursor (focus) is in TextPane component and this blinking effect disappears if the focus is on a other component.
> Duto

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (PIVOT-635) Blinking effect on TextPaneDemo

Posted by "dutrieux (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/PIVOT-635?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12908784#action_12908784 ] 

dutrieux commented on PIVOT-635:
--------------------------------

Os : 
   Windows 7 x64
java : 
   Java(TM) SE Runtime Environment (build 1.6.0_21-b07)
   Java HotSpot(TM) 64-Bit Server VM (build 17.0-b17, mixed mode)

I start the application TextPaneDemo, set focus to TextPane  and when I resize the window I have a flicker effect. If I set the focus on a other component and resize the window I don't have the flicker effect

Greg you can't reproduce this problem on you system ?



> Blinking effect on TextPaneDemo
> -------------------------------
>
>                 Key: PIVOT-635
>                 URL: https://issues.apache.org/jira/browse/PIVOT-635
>             Project: Pivot
>          Issue Type: Bug
>          Components: wtk
>    Affects Versions: 2.0
>         Environment: windows 7 x64
> Java 1.6.0.21
>            Reporter: dutrieux
>
> I remark a blinking effect when I resize window on TextPaneDemo when the cursor (focus) is in TextPane component and this blinking effect disappears if the focus is on a other component.
> Duto

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Issue Comment Edited: (PIVOT-635) Ficker effect on TextPaneDemo

Posted by "dutrieux (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/PIVOT-635?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12909410#action_12909410 ] 

dutrieux edited comment on PIVOT-635 at 9/14/10 4:01 PM:
---------------------------------------------------------

Oki I found a solution :

I add "-Dsun.java2d.noddraw=true" to my VM parameter and that's work perfectly with no flicker.

I found some informations about that : 

"In Windows, in Swing, you will see the entire screen repaint from time to time for no apparent reason, causing an annoying flicker. This is due to the fact that Swing uses DirectDraw for rendering which periodically redraws just to be safe. You can turn off DirectDraw and use standard Windows GDI rendering by starting

Java.exe -Dsun.java2d.noddraw=true MyClass

This will slightly slow down painting, however."

You could found more information on this page :

http://java.sun.com/products/java-media/2D/perf_graphics.html

++

      was (Author: dutrieux):
    Oki If I found a solution :

I add "-Dsun.java2d.noddraw=true" to my VM parameter and that's work perfectly with no flicker.

I found some informations about that : 

"In Windows, in Swing, you will see the entire screen repaint from time to time for no apparent reason, causing an annoying flicker. This is due to the fact that Swing uses DirectDraw for rendering which periodically redraws just to be safe. You can turn off DirectDraw and use standard Windows GDI rendering by starting

Java.exe -Dsun.java2d.noddraw=true MyClass

This will slightly slow down painting, however."

You could found more information on this page :

http://java.sun.com/products/java-media/2D/perf_graphics.html

++
  
> Ficker effect on TextPaneDemo
> -----------------------------
>
>                 Key: PIVOT-635
>                 URL: https://issues.apache.org/jira/browse/PIVOT-635
>             Project: Pivot
>          Issue Type: Bug
>          Components: wtk
>    Affects Versions: 2.0
>         Environment: windows 7 x64
> Java 1.6.0.21
>            Reporter: dutrieux
>
> I remark a blinking effect when I resize window on TextPaneDemo when the cursor (focus) is in TextPane component and this blinking effect disappears if the focus is on a other component.
> Duto

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Closed: (PIVOT-635) Ficker effect on TextPaneDemo

Posted by "Greg Brown (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/PIVOT-635?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Greg Brown closed PIVOT-635.
----------------------------

    Resolution: Fixed

Can you verify that you are still seeing this problem with the latest build? We're currently tracking some issues with ColorChooser in PIVOT-390:

  https://issues.apache.org/jira/browse/PIVOT-390

Let's add additional information to that ticket.


> Ficker effect on TextPaneDemo
> -----------------------------
>
>                 Key: PIVOT-635
>                 URL: https://issues.apache.org/jira/browse/PIVOT-635
>             Project: Pivot
>          Issue Type: Bug
>          Components: wtk
>    Affects Versions: 2.0
>         Environment: windows 7 x64
> Java 1.6.0.21
>            Reporter: Olivier Dutrieux
>             Fix For: 2.0
>
>
> I remark a blinking effect when I resize window on TextPaneDemo when the cursor (focus) is in TextPane component and this blinking effect disappears if the focus is on a other component.
> Duto

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (PIVOT-635) Ficker effect on TextPaneDemo

Posted by "Greg Brown (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/PIVOT-635?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12909557#action_12909557 ] 

Greg Brown commented on PIVOT-635:
----------------------------------

To fix another bug, I recently made a change to the text input and text area skins that queues a repaint callback rather than repainting the caret immediately. If you sync with the latest 2.0 code, do you still see this problem without the VM parameter?


> Ficker effect on TextPaneDemo
> -----------------------------
>
>                 Key: PIVOT-635
>                 URL: https://issues.apache.org/jira/browse/PIVOT-635
>             Project: Pivot
>          Issue Type: Bug
>          Components: wtk
>    Affects Versions: 2.0
>         Environment: windows 7 x64
> Java 1.6.0.21
>            Reporter: dutrieux
>
> I remark a blinking effect when I resize window on TextPaneDemo when the cursor (focus) is in TextPane component and this blinking effect disappears if the focus is on a other component.
> Duto

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Reopened: (PIVOT-635) Ficker effect on TextPaneDemo

Posted by "Olivier Dutrieux (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/PIVOT-635?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Olivier Dutrieux reopened PIVOT-635:
------------------------------------


I remark that with color chooser (from the Kitchen demo) I have the flicker too when I resize the window, if a add  -Dsun.java2d.noddraw=true on th vm parameter the flicker disappears

> Ficker effect on TextPaneDemo
> -----------------------------
>
>                 Key: PIVOT-635
>                 URL: https://issues.apache.org/jira/browse/PIVOT-635
>             Project: Pivot
>          Issue Type: Bug
>          Components: wtk
>    Affects Versions: 2.0
>         Environment: windows 7 x64
> Java 1.6.0.21
>            Reporter: Olivier Dutrieux
>             Fix For: 2.0
>
>
> I remark a blinking effect when I resize window on TextPaneDemo when the cursor (focus) is in TextPane component and this blinking effect disappears if the focus is on a other component.
> Duto

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (PIVOT-635) Ficker effect on TextPaneDemo

Posted by "dutrieux (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/PIVOT-635?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12909410#action_12909410 ] 

dutrieux commented on PIVOT-635:
--------------------------------

Oki If I found a solution :

I add "-Dsun.java2d.noddraw=true" to my VM parameter and that's work perfectly with no flicker.

I found some informations about that : 

"In Windows, in Swing, you will see the entire screen repaint from time to time for no apparent reason, causing an annoying flicker. This is due to the fact that Swing uses DirectDraw for rendering which periodically redraws just to be safe. You can turn off DirectDraw and use standard Windows GDI rendering by starting

Java.exe -Dsun.java2d.noddraw=true MyClass

This will slightly slow down painting, however."

> Ficker effect on TextPaneDemo
> -----------------------------
>
>                 Key: PIVOT-635
>                 URL: https://issues.apache.org/jira/browse/PIVOT-635
>             Project: Pivot
>          Issue Type: Bug
>          Components: wtk
>    Affects Versions: 2.0
>         Environment: windows 7 x64
> Java 1.6.0.21
>            Reporter: dutrieux
>
> I remark a blinking effect when I resize window on TextPaneDemo when the cursor (focus) is in TextPane component and this blinking effect disappears if the focus is on a other component.
> Duto

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (PIVOT-635) Blinking effect on TextPaneDemo

Posted by "dutrieux (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/PIVOT-635?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12908458#action_12908458 ] 

dutrieux commented on PIVOT-635:
--------------------------------

Yes it's flicker efffect on window

> Blinking effect on TextPaneDemo
> -------------------------------
>
>                 Key: PIVOT-635
>                 URL: https://issues.apache.org/jira/browse/PIVOT-635
>             Project: Pivot
>          Issue Type: Bug
>          Components: wtk
>    Affects Versions: 2.0
>         Environment: windows 7 x64
> Java 1.6.0.21
>            Reporter: dutrieux
>
> I remark a blinking effect when I resize window on TextPaneDemo when the cursor (focus) is in TextPane component and this blinking effect disappears if the focus is on a other component.
> Duto

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (PIVOT-635) Blinking effect on TextPaneDemo

Posted by "Greg Brown (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/PIVOT-635?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12908461#action_12908461 ] 

Greg Brown commented on PIVOT-635:
----------------------------------

Are you using Pivot 2.0? If so, try commenting out the call to paintVolatileBuffered() on line 393 of ApplicationContext (but not the call to paintBuffered()):

// if (!paintVolatileBuffered((Graphics2D)graphics)) {
    if (!paintBuffered((Graphics2D)graphics)) {
        paintDisplay((Graphics2D)graphics);
    }
// }

I.e. bypass the volatile image and just use a regular buffered image. Let me know if that works.


> Blinking effect on TextPaneDemo
> -------------------------------
>
>                 Key: PIVOT-635
>                 URL: https://issues.apache.org/jira/browse/PIVOT-635
>             Project: Pivot
>          Issue Type: Bug
>          Components: wtk
>    Affects Versions: 2.0
>         Environment: windows 7 x64
> Java 1.6.0.21
>            Reporter: dutrieux
>
> I remark a blinking effect when I resize window on TextPaneDemo when the cursor (focus) is in TextPane component and this blinking effect disappears if the focus is on a other component.
> Duto

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (PIVOT-635) Ficker effect on TextPaneDemo

Posted by "dutrieux (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/PIVOT-635?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

dutrieux updated PIVOT-635:
---------------------------

    Summary: Ficker effect on TextPaneDemo  (was: Blinking effect on TextPaneDemo)

> Ficker effect on TextPaneDemo
> -----------------------------
>
>                 Key: PIVOT-635
>                 URL: https://issues.apache.org/jira/browse/PIVOT-635
>             Project: Pivot
>          Issue Type: Bug
>          Components: wtk
>    Affects Versions: 2.0
>         Environment: windows 7 x64
> Java 1.6.0.21
>            Reporter: dutrieux
>
> I remark a blinking effect when I resize window on TextPaneDemo when the cursor (focus) is in TextPane component and this blinking effect disappears if the focus is on a other component.
> Duto

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (PIVOT-635) Blinking effect on TextPaneDemo

Posted by "Greg Brown (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/PIVOT-635?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12908448#action_12908448 ] 

Greg Brown commented on PIVOT-635:
----------------------------------

I'm not sure I understand the problem. The text pane should only show a blinking caret when it has the focus. If another component has the focus, the text pane will lose its focus state and stop showing the caret.

Can you provide some specific steps to reproduce this issue?

> Blinking effect on TextPaneDemo
> -------------------------------
>
>                 Key: PIVOT-635
>                 URL: https://issues.apache.org/jira/browse/PIVOT-635
>             Project: Pivot
>          Issue Type: Bug
>          Components: wtk
>    Affects Versions: 2.0
>         Environment: windows 7 x64
> Java 1.6.0.21
>            Reporter: dutrieux
>
> I remark a blinking effect when I resize window on TextPaneDemo when the cursor (focus) is in TextPane component and this blinking effect disappears if the focus is on a other component.
> Duto

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (PIVOT-635) Ficker effect on TextPaneDemo

Posted by "dutrieux (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/PIVOT-635?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12909163#action_12909163 ] 

dutrieux commented on PIVOT-635:
--------------------------------

I make some test on differents systems it's very strange :s

I test on 
 - window 7 64bits (on my staff) with a jdk1.6.0.21 x64 with no problem
 - Window xp sp3 32 bits (virtual machine) with jdk 1.6.0.18 with no problem

I seem to be my home computer have only this problem. I investigate to tonight ...


> Ficker effect on TextPaneDemo
> -----------------------------
>
>                 Key: PIVOT-635
>                 URL: https://issues.apache.org/jira/browse/PIVOT-635
>             Project: Pivot
>          Issue Type: Bug
>          Components: wtk
>    Affects Versions: 2.0
>         Environment: windows 7 x64
> Java 1.6.0.21
>            Reporter: dutrieux
>
> I remark a blinking effect when I resize window on TextPaneDemo when the cursor (focus) is in TextPane component and this blinking effect disappears if the focus is on a other component.
> Duto

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (PIVOT-635) Blinking effect on TextPaneDemo

Posted by "dutrieux (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/PIVOT-635?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12908451#action_12908451 ] 

dutrieux commented on PIVOT-635:
--------------------------------

In fact when I resize the window of the TextPaneDemo, if the TextPane  have the focus they are a blinking effect on window, but they don't have this problem if the focus is a other component. Sorry for my bad english :s

> Blinking effect on TextPaneDemo
> -------------------------------
>
>                 Key: PIVOT-635
>                 URL: https://issues.apache.org/jira/browse/PIVOT-635
>             Project: Pivot
>          Issue Type: Bug
>          Components: wtk
>    Affects Versions: 2.0
>         Environment: windows 7 x64
> Java 1.6.0.21
>            Reporter: dutrieux
>
> I remark a blinking effect when I resize window on TextPaneDemo when the cursor (focus) is in TextPane component and this blinking effect disappears if the focus is on a other component.
> Duto

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (PIVOT-635) Blinking effect on TextPaneDemo

Posted by "Greg Brown (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/PIVOT-635?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12909048#action_12909048 ] 

Greg Brown commented on PIVOT-635:
----------------------------------

No, I don't see this issue on my system (Mac OS X 10.6.4, JDK 1.6.0_20). Unfortunately I don't currently have a Windows 7 installation I can test on, so any additional information you can provide would be helpful.


> Blinking effect on TextPaneDemo
> -------------------------------
>
>                 Key: PIVOT-635
>                 URL: https://issues.apache.org/jira/browse/PIVOT-635
>             Project: Pivot
>          Issue Type: Bug
>          Components: wtk
>    Affects Versions: 2.0
>         Environment: windows 7 x64
> Java 1.6.0.21
>            Reporter: dutrieux
>
> I remark a blinking effect when I resize window on TextPaneDemo when the cursor (focus) is in TextPane component and this blinking effect disappears if the focus is on a other component.
> Duto

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (PIVOT-635) Blinking effect on TextPaneDemo

Posted by "Greg Brown (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/PIVOT-635?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12908562#action_12908562 ] 

Greg Brown commented on PIVOT-635:
----------------------------------

OK, that is good to know. Can you provide a list of the specific steps you execute to produce the problem? Also, what OS/Java version are you using?


> Blinking effect on TextPaneDemo
> -------------------------------
>
>                 Key: PIVOT-635
>                 URL: https://issues.apache.org/jira/browse/PIVOT-635
>             Project: Pivot
>          Issue Type: Bug
>          Components: wtk
>    Affects Versions: 2.0
>         Environment: windows 7 x64
> Java 1.6.0.21
>            Reporter: dutrieux
>
> I remark a blinking effect when I resize window on TextPaneDemo when the cursor (focus) is in TextPane component and this blinking effect disappears if the focus is on a other component.
> Duto

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (PIVOT-635) Blinking effect on TextPaneDemo

Posted by "Greg Brown (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/PIVOT-635?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12908453#action_12908453 ] 

Greg Brown commented on PIVOT-635:
----------------------------------

Are you saying that you see an unexpected flicker effect in the window when you resize?


> Blinking effect on TextPaneDemo
> -------------------------------
>
>                 Key: PIVOT-635
>                 URL: https://issues.apache.org/jira/browse/PIVOT-635
>             Project: Pivot
>          Issue Type: Bug
>          Components: wtk
>    Affects Versions: 2.0
>         Environment: windows 7 x64
> Java 1.6.0.21
>            Reporter: dutrieux
>
> I remark a blinking effect when I resize window on TextPaneDemo when the cursor (focus) is in TextPane component and this blinking effect disappears if the focus is on a other component.
> Duto

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (PIVOT-635) Ficker effect on TextPaneDemo

Posted by "Olivier Dutrieux (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/PIVOT-635?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12909586#action_12909586 ] 

Olivier Dutrieux commented on PIVOT-635:
----------------------------------------

Your are the must, I work perfectly (no flicker) without the parameter !!!

thx

> Ficker effect on TextPaneDemo
> -----------------------------
>
>                 Key: PIVOT-635
>                 URL: https://issues.apache.org/jira/browse/PIVOT-635
>             Project: Pivot
>          Issue Type: Bug
>          Components: wtk
>    Affects Versions: 2.0
>         Environment: windows 7 x64
> Java 1.6.0.21
>            Reporter: Olivier Dutrieux
>
> I remark a blinking effect when I resize window on TextPaneDemo when the cursor (focus) is in TextPane component and this blinking effect disappears if the focus is on a other component.
> Duto

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.