[Libreoffice-bugs] [Bug 121963] button flashing - mouse wheel zooming breaks

2019-11-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121963

Armin Le Grand  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |armin.le.gr...@me.com
   |desktop.org |

--- Comment #53 from Armin Le Grand  ---
Works well, but need to update local master 1st to prepare commit ...

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 121963] button flashing - mouse wheel zooming breaks

2019-11-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121963

--- Comment #52 from Armin Le Grand  ---
@devseppala: Well - the GridOffset needs to be applied in both cases, so this
makes not really a difference...

>From the logic I think (2) is the better option - will now do that and check if
it works as intended. Keep in mind that the GridOffset stuff itself is a
compromize fix for the (hard) calc probem of non-linear ViewTransformation(s)
for pixel-oriented displays - I know that since I implemented it ;-)
In the long run a view-dependent solution using VOC/OC/VC in combination with
primitives would be much better anyways... but thats another story ;-)

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 121963] button flashing - mouse wheel zooming breaks

2019-11-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121963

--- Comment #51 from devsepp...@gmail.com ---
Very interesting to read about your bug hunt Armin, and good to see that you
have made so much progress.

About your A/B solution options. Is there any performance issue to consider,
how often are these called in worst case scenario. I mean checking a flag
sounds potentially more slower than just systematically adding the offset.

Just my 2 cents, great work!

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 121963] button flashing - mouse wheel zooming breaks

2019-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121963

--- Comment #50 from Armin Le Grand  ---
Problem is that ViewObjectContactOfUnoControl_Impl::positionAndZoomControl is
used in two scenarios:
(1) During paint -> GridOffset is already part of ViewTransformation2D
(2) Other (IsVisible, getPrimSeq, ...) -> GridOffset *not* added
while (1) is coming from LazyControlCreationPrimitive2D::get2DDecomposition
while (2) comes from ViewObjectContactOfUnoControl::isPrimitiveVisible.

Using m_pAntiImpl->getObjectRange() in
ViewObjectContactOfUnoControl_Impl::positionAndZoomControl in both cases will
not work -> in case (1) the GridOffset will be taken into account *twice*. So
there are two alternatives:

(a) extend ViewObjectContactOfUnoControl_Impl::positionAndZoomControl with a
flag to internally know if GridOffset is alread added
(b) add GridOffset for all usages of (2) to ViewTransformation2D

Not sure what is better, have to think about it strategically/from the
underlying principle...

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 121963] button flashing - mouse wheel zooming breaks

2019-11-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121963

--- Comment #49 from Armin Le Grand  ---
The embedding to TransformPrimitive2D is indeed created by
ViewObjectContact::getPrimitive2DSequence and taking
supportsGridOffsets/getGridOffset into account - what is completely corect and
core element of the change.
What seems wrong OTOH is more that in
ViewObjectContactOfUnoControl_Impl::positionAndZoomControl the GridOffst is
*not* taken into account -> need to add that.
Made a 1st rough try in adding to _rViewTransformation, but this would add it
double in the non-EndRepaint stuff. Thus the logically correct thing to do is
probably to not use

const tools::Rectangle aRect( pUnoObject->GetLogicRect() );

in ViewObjectContactOfUnoControl_Impl::positionAndZoomControl, but to get the
B2DRange from the SeqOfPrim which will then correctly include the offset...

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 121963] button flashing - mouse wheel zooming breaks

2019-10-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121963

--- Comment #48 from Armin Le Grand  ---
Seems to be special stuff with controls - sigh.
When breaking in svx\source\sdr\contact\objectcontactofpageview.cxx:290 in line

pProcessor2D->process(xPrimitiveSequence);

it can be seen that the ViewInformation2D from *this and at the processor is
the same, while later in LazyControlCreationPrimitive2D::get2DDecomposition it
is *different*.
This is because the processed SeqOfPrim modifies it - in
VclProcessor2D::RenderTransformPrimitive2D. This means the ControlPrimitive
itself contains the offset (in my local example '30' which leads to a pixel
offset of 1.0889). Forcing this to zero silences the repaint.

Thus the question is: Who and why does someone create a TransformPrimitive2D?
There are probably good reasons, so maybe we get a principal problem here...?

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 121963] button flashing - mouse wheel zooming breaks

2019-10-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121963

--- Comment #47 from Armin Le Grand  ---
In adjustControlGeometry_throw aViewTranslate is sometimes *not* zero, but has
some values. Thi seems to be the reason for the offsets - tried to hunt down
where this comes from, but hard to find - about 25 stack levels involved...

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 121963] button flashing - mouse wheel zooming breaks

2019-10-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121963

--- Comment #46 from Bernard SIAUD  ---
I think that's I have de same problem with this version :

Version: 6.4.0.0.alpha1
Build ID: cc57df8f942f239d29cb575ea5a7cb01405db787
Threads CPU : 4; OS : Linux 5.3; UI Render : par défaut; VCL: gtk3; 
Locale : fr-FR (fr_FR.UTF-8); Langue IHM : fr-FR
Calc: threaded

I can use LibO 6.3 because the CPU up to 100% when I use my sheet with macro.
LibO 6.4 have the same problem.

The file Xray have this problem.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 121963] button flashing - mouse wheel zooming breaks

2019-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121963

--- Comment #45 from Armin Le Grand  ---
Happens when the Control is live (not edit mode) and the mapping is - due to
non-linear ViewMapping in Calc - dependent on pixel sies. In these cases,
ViewObjectContactOfUnoControl_Impl::positionAndZoomControl is called. That uses
adjustControlGeometry_throw where

aTopLeft, aBottomRight change while
_rLogicBoundingRect does not (mostly flicker of a single pixel).

This is due to different _rViewTransformation being used, dependent on where
the paint is compng from (yes, the live Controls' positioning works by
lay-positioning these during paint what may lead to an invalidate in the
window, but usually only *once*, except for the crude Calc non-linear
ViewTransform mapping - ARGH)

Key to fix this will be to find out which tranform would be the correct one and
which path uses the wrong one...

All calls emerge from a single ScGridWindow::DrawContent. Every 2nd paint
triggers between two pixel value variations, this can be best seen in

ControlHolder::setPosSize

One call inside ScGridWindow::DrawContent triggers one pixel value set, another
triggers the alternative one. These calls are:

DrawRedraw( aOutputData, SC_LAYER_INTERN ); -> smaller/more left
pContentDev->SetMapMode(aCurrentMapMode); -> bigger, more right

These do then alternate endlessly, because they invalidate different parts.
Question is why these lead to different pixel position values...

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 121963] button flashing - mouse wheel zooming breaks

2019-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121963

--- Comment #44 from Xisco Faulí  ---
*** Bug 125720 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 121963] button flashing - mouse wheel zooming breaks

2019-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121963

Xisco Faulí  changed:

   What|Removed |Added

 CC||todven...@suomi24.fi

--- Comment #43 from Xisco Faulí  ---
*** Bug 122713 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 121963] button flashing - mouse wheel zooming breaks

2019-10-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121963

--- Comment #42 from devsepp...@gmail.com ---

When I searched the originating commit from Github:

https://github.com/LibreOffice/core/search?q=d464d505fbf6e53a38afdd3661d320fac8c760d6&type=Commits

I noticed that developer vmiklos had fixed a similar issue as this bug:

tdf#123505 svx: fix invalidation loop caused by special form control …
https://github.com/LibreOffice/core/commit/5b51aa12e8ebfa894ecfdd0c8c9004aa99e6f46d

Is there some way to ask if he could look in to this issue too. It seems very
similar to the one he already worked on and is related to the same originating
commit.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 121963] button flashing - mouse wheel zooming breaks

2019-10-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121963

--- Comment #41 from Julien Nabet  ---
Adding traces in some functions of the quoted commit, I noticed this block was
repeted infinitely:
OverlayObject::getOverlayObjectPrimitive2DSequence
OverlayObject::getOverlayObjectPrimitive2DSequence
ViewObjectContact::getPrimitive2DSequence
ViewObjectContact::getGridOffset
ViewObjectContact::getPrimitive2DSequence
ViewObjectContact::getGridOffset
ViewObjectContact::getPrimitive2DSequence
ViewObjectContact::getGridOffset

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 121963] button flashing - mouse wheel zooming breaks

2019-10-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121963

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #40 from Julien Nabet  ---
Created attachment 155290
  --> https://bugs.documentfoundation.org/attachment.cgi?id=155290&action=edit
perf flamegraph

On pc Debian x86-64 with master sources updated 2 days ago, I retrieved a
Flamegraph.

Perhaps it may help.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 121963] button flashing - mouse wheel zooming breaks

2019-10-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121963

--- Comment #39 from devsepp...@gmail.com ---
Adding to previous that if you enable:
“Options > LibreOffice > View > Use OpenGL for all rendering” 

There is no flickering, but menus and dialogs show up empty. CPU use is high
and GPU is 98%.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 121963] button flashing - mouse wheel zooming breaks

2019-10-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121963

--- Comment #38 from devsepp...@gmail.com ---
I believe that I have also stumbled on this bug and it seems to be very
cumbersome to trigger.

In my experience this bug triggered more by non-uniform row height than column
width.  Can anyone else trigger this bug with uniform column width and
non-uniform row height?

Also in my case, forcing uniform row height does fix this issue. Even if you
change the height of some row afterwards.  But it is only fixed for the current
zoom level. If you change the zoom level, the flickering will come back on some
other zoom level. Now the bug just manifests itself on a different zoom level
than previously.

Also, in some situations all of the menus and dialogs show up empty, while this
bug is active.

On multiple occasions, I have been able to trigger this with just one form
control, but for some reason I can not find a pattern that would work always.
With two controls it is more consistent, but with two controls I have not
experienced the disappearing of menus and dialogs.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 121963] button flashing - mouse wheel zooming breaks

2019-10-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121963

Xisco Faulí  changed:

   What|Removed |Added

 CC||tass...@free.fr

--- Comment #37 from Xisco Faulí  ---
*** Bug 128368 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 121963] button flashing - mouse wheel zooming breaks

2019-10-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121963

--- Comment #36 from Julian Ragan  ---
While further testing zoom functionality I was able to once trigger this bug on
a new file with default column width and one control. 

However, I was not able to reproduce with multiple attempts.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 121963] button flashing - mouse wheel zooming breaks

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121963

--- Comment #35 from Julian Ragan  ---
(In reply to Elizabeth Thomasma from comment #33)

> I have CALC workbook with only 1 control. It flickers so issue does occur
> with just 1 control

I can't reproduce it (in files created from scratch at least), without using
zoom functionality (which I don't use in my workflow).
One control on a page with default zoom and non-default column width does not
trigger this bug for me. 
Two or more controls and non default column width - it starts flashing after
loading file, or if file is newly created, then it randomly takes up to few
seconds.

However, with single control I can only reproduce the bug with the use of zoom
feature.
Reproduction:
1. Create new file
2. Add one control
3. Resize one column (necessary, could not reproduce without this step)
4. Zoom out to at least 80% or zoom in to at least 110% (those values appear to
be trigger points for this bug for forms with one control on them)

Can you check if you have non default zoom in your file and if yes, then check
what happens with your file if you set zoom to 100%?

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 121963] button flashing - mouse wheel zooming breaks

2019-10-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121963

Xisco Faulí  changed:

   What|Removed |Added

 CC||fahad.alsa...@gmail.com

--- Comment #34 from Xisco Faulí  ---
*** Bug 128107 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 121963] button flashing - mouse wheel zooming breaks

2019-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121963

--- Comment #33 from Elizabeth Thomasma  ---
(In reply to Julian Ragan from comment #28)
> I have narrowed it down to the following:
> If a form has more than one control and in the underlying sheet column width
> in any one column is set to different than default, then all controls on the
> form start (not always immediately) to refresh (redraw) in a continuous loop
> affecting overall performance.
> 
> Steps to reproduce the bug:
> 1.Create new sheet
> 2.Add two controls to the form
> 3.Resize a few columns on the sheet
> 
> If all columns have default width this bug will not manifest itself.
> If there is one control on the form, this bug will not manifest itself.
> 
> Reproducibility is a bit sketchy, since sometimes it starts to continuously
> refresh immediately and sometimes it takes a few seconds to catch on.

I have CALC workbook with only 1 control. It flickers so issue does occur with
just 1 control

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 121963] button flashing - mouse wheel zooming breaks

2019-10-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121963

Xisco Faulí  changed:

   What|Removed |Added

 CC||fernando.si...@usp.sbsi.pt

--- Comment #32 from Xisco Faulí  ---
*** Bug 128326 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 121963] button flashing - mouse wheel zooming breaks

2019-10-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121963

Telesto  changed:

   What|Removed |Added

 Blocks||128256


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=128256
[Bug 128256] [META] Refactor calc non-linear ViewToDevice transform regressions
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 121963] button flashing - mouse wheel zooming breaks

2019-10-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121963

--- Comment #31 from Oliver Brinzing  ---
(In reply to Julian Ragan from comment #28)
> If all columns have default width this bug will not manifest itself.

confirming, root cause seems to be the column width.

please have a look at:
https://bugs.documentfoundation.org/show_bug.cgi?id=128151#c1

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 121963] button flashing - mouse wheel zooming breaks

2019-10-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121963

Oliver Brinzing  changed:

   What|Removed |Added

 CC||iretire2...@gmail.com

--- Comment #30 from Oliver Brinzing  ---
*** Bug 128151 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 121963] button flashing - mouse wheel zooming breaks

2019-10-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121963

Oliver Brinzing  changed:

   What|Removed |Added

 CC||sa...@spooky-online.de

--- Comment #29 from Oliver Brinzing  ---
*** Bug 128147 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 121963] button flashing - mouse wheel zooming breaks

2019-10-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121963

--- Comment #28 from Julian Ragan  ---
I have narrowed it down to the following:
If a form has more than one control and in the underlying sheet column width in
any one column is set to different than default, then all controls on the form
start (not always immediately) to refresh (redraw) in a continuous loop
affecting overall performance.

Steps to reproduce the bug:
1.Create new sheet
2.Add two controls to the form
3.Resize a few columns on the sheet

If all columns have default width this bug will not manifest itself.
If there is one control on the form, this bug will not manifest itself.

Reproducibility is a bit sketchy, since sometimes it starts to continuously
refresh immediately and sometimes it takes a few seconds to catch on.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 121963] button flashing - mouse wheel zooming breaks

2019-10-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121963

--- Comment #27 from Steve  ---
Simple Questions / Feedback / Observations (please don't take offence):

* You have a stable version (6.2), so what is the purpose of something like the
6.3 version, with multiple releases.  I can understand alpha/beta versions
being available whilst bugs/design issues are being addressed, but when you
remove those statuses and give it what appears to be a "released" version
nomenclature, then user expectation changes accordingly.

* This problem, which at first sight seems to be quite serious for those
afflicted by it, has been identified around 10 months ago.  Given the previous
point, not having any feedback regarding ETA (or even if it is being looked at)
is disturbing.  As I said, purely from a user's perspective, ver 6.3 looks like
a production version of LO.  And therefore, I would also have an expectation
about having to revert as a result of inactivity, losing as a result, the slew
of excellent enhancements present in 6.3


regards,  Steve

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 121963] button flashing - mouse wheel zooming breaks

2019-10-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121963

--- Comment #26 from t...@tim-passingham.co.uk ---
If only I had search for 'flicker', instead of 'shake' or 'vibrate', I wouldn't
have raised a duplicate.   Sorry.

But it is still a current issue on:
Version: 6.3.2.2
Build ID: 1:6.3.2-0ubuntu0.19.04.1~lo1
CPU threads: 8; OS: Linux 5.0; UI render: default; VCL: x11; 
Locale: en-GB (en_GB.UTF-8); UI-Language: en-GB
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 121963] button flashing - mouse wheel zooming breaks

2019-10-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121963

Xisco Faulí  changed:

   What|Removed |Added

 CC||t...@tim-passingham.co.uk

--- Comment #25 from Xisco Faulí  ---
*** Bug 128093 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 121963] button flashing - mouse wheel zooming breaks

2019-10-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121963

--- Comment #24 from burnu...@gmail.com ---
LO 6.3.2.2 German on Win 10 x64:
a) flickering Form-Button
b) flickering colors in color palette while moving mouse over colors
c) flickering in selection drop down - Line style/width (Calc cells + graphic
elements)

+ CPU = 30% while doing nothing!

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 121963] button flashing - mouse wheel zooming breaks

2019-09-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121963

Xisco Faulí  changed:

   What|Removed |Added

 CC||kade...@ya.ru

--- Comment #23 from Xisco Faulí  ---
*** Bug 127842 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 121963] button flashing - mouse wheel zooming breaks

2019-09-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121963

--- Comment #22 from off...@perfectfitsolutions.at ---
Is there any (alpha, daily) version that has some kind of fix for this Bug to
test if it's working. I would test it asap ;-)

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 121963] button flashing - mouse wheel zooming breaks

2019-09-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121963

Xisco Faulí  changed:

   What|Removed |Added

 CC||office@perfectfitsolutions.
   ||at

--- Comment #21 from Xisco Faulí  ---
*** Bug 127828 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 121963] button flashing - mouse wheel zooming breaks

2019-09-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121963

Oliver Brinzing  changed:

   What|Removed |Added

 CC||broe...@gmail.com

--- Comment #20 from Oliver Brinzing  ---
*** Bug 127636 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 121963] button flashing - mouse wheel zooming breaks

2019-09-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121963

Xisco Faulí  changed:

   What|Removed |Added

 CC||chlou...@gmail.com

--- Comment #19 from Xisco Faulí  ---
*** Bug 127067 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 121963] button flashing - mouse wheel zooming breaks

2019-09-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121963

Oliver Brinzing  changed:

   What|Removed |Added

 CC||stevepattin...@hotmail.com

--- Comment #18 from Oliver Brinzing  ---
*** Bug 127563 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 121963] button flashing - mouse wheel zooming breaks

2019-09-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121963

Aron Budea  changed:

   What|Removed |Added

 CC||stdula...@netscape.net

--- Comment #17 from Aron Budea  ---
*** Bug 127503 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 121963] button flashing - mouse wheel zooming breaks

2019-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121963

Oliver Brinzing  changed:

   What|Removed |Added

 CC||evors...@protonmail.com

--- Comment #16 from Oliver Brinzing  ---
*** Bug 127444 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 121963] button flashing - mouse wheel zooming breaks

2019-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121963

--- Comment #15 from Jaise James  ---
In calc Side bar, cell appearance - > cell border line style[ on adding any
cell border enable it] flickering continuously.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 121963] button flashing - mouse wheel zooming breaks

2019-09-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121963

Xisco Faulí  changed:

   What|Removed |Added

 CC||pi...@lechprojekt.com

--- Comment #14 from Xisco Faulí  ---
*** Bug 127352 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 121963] button flashing - mouse wheel zooming breaks

2019-08-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121963

Oliver Brinzing  changed:

   What|Removed |Added

 CC||ke...@k7su.com

--- Comment #13 from Oliver Brinzing  ---
*** Bug 127155 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 121963] button flashing - mouse wheel zooming breaks

2019-08-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121963

--- Comment #12 from Jean-Baptiste Faure  ---
In addition to the button flickering, we have 100% CPU consumption.

Tested in Version: 6.3.2.0.0+
Build ID: 97b6565f27acad7288de016530c753f27f9d55f9
CPU threads: 4; OS: Linux 4.15; UI render: default; VCL: gtk3; 
Ubuntu_18.04_x86-64
Locale: fr-FR (fr_FR.UTF-8); UI-Language: en-US
Calc: threaded

Best regards. JBF

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 121963] button flashing - mouse wheel zooming breaks

2019-08-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121963

Jean-Baptiste Faure  changed:

   What|Removed |Added

 CC||guraknu...@gmail.com

--- Comment #11 from Jean-Baptiste Faure  ---
*** Bug 126987 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 121963] button flashing - mouse wheel zooming breaks

2019-08-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121963

Xisco Faulí  changed:

   What|Removed |Added

 CC||faliver...@davide.it

--- Comment #10 from Xisco Faulí  ---
*** Bug 126845 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 121963] button flashing - mouse wheel zooming breaks

2019-08-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121963

Oliver Brinzing  changed:

   What|Removed |Added

 CC||britfo...@hotmail.com

--- Comment #9 from Oliver Brinzing  ---
*** Bug 126778 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 121963] button flashing - mouse wheel zooming breaks

2019-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121963

--- Comment #8 from Oliver Brinzing  ---
this issue is reproducible with release:

Version: 6.3.0.4 (x64)
Build-ID: 057fc023c990d676a43019934386b85b21a9ee99
CPU-Threads: 4; BS: Windows 10.0; UI-Render: Standard; VCL: win; 
Gebietsschema: de-DE (de_DE); UI-Sprache: de-DE
Calc:

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 121963] button flashing - mouse wheel zooming breaks

2019-07-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121963

Oliver Brinzing  changed:

   What|Removed |Added

 CC||ja...@rinac.com

--- Comment #7 from Oliver Brinzing  ---
*** Bug 126558 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 121963] button flashing - mouse wheel zooming breaks

2019-06-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121963

Xisco Faulí  changed:

   What|Removed |Added

   Priority|high|highest
   Severity|major   |critical
Summary|button flashing |button flashing - mouse
   ||wheel zooming breaks

--- Comment #6 from Xisco Faulí  ---
The mentioned commit also breaks the mouse wheel zooming if there is a button
on the spreadsheet. Increasing severity towards 6.3 release

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs