[Libreoffice-bugs] [Bug 120896] Context menu does not appear over cell contents after the spell check context menu was active

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120896

Justin L  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
   Assignee|libreoffice-b...@lists.free |jl...@mail.com
   |desktop.org |
 Resolution|--- |FIXED

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 120896] Context menu does not appear over cell contents after the spell check context menu was active

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120896

--- Comment #12 from Commit Notification 
 ---
Justin Luth committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/d098e027cb9899e31ae3ff7ba245b78a009681fb

tdf#120896 sc: commit change after PopupSpelling

It will be available in 7.4.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 120896] Context menu does not appear over cell contents after the spell check context menu was active

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120896

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:7.4.0

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 120896] Context menu does not appear over cell contents after the spell check context menu was active

2022-01-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120896

--- Comment #11 from Eike Rathke  ---
Ah the missing step for me was
1.a: hit Enter to close the cell
then I can reproduce.
I tried context menu on the just entered string while still in-cell.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 120896] Context menu does not appear over cell contents after the spell check context menu was active

2022-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120896

--- Comment #10 from Buovjaga  ---
(In reply to Eike Rathke from comment #9)
> I don't even get the spell-check menu while editing the cell. No matter with
> or without Automatic Spell Checking enabled. But I always get the normal
> cell editing context menu.

Did you do the original steps from the description? I still reproduce with all
Linux VCL backends. Note that in step 4 you need to click the text, not the
empty part of the cell.

Arch Linux 64-bit
Version: 7.4.0.0.alpha0+ / LibreOffice Community
Build ID: 71be70b16b37fb3c1b6331ab3581300556ecc7aa
CPU threads: 8; OS: Linux 5.15; UI render: default; VCL: kf5 (cairo+xcb)
Locale: fi-FI (fi_FI.UTF-8); UI: en-US
Calc: threaded
Built on 7 January 2022

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 120896] Context menu does not appear over cell contents after the spell check context menu was active

2022-01-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120896

Eike Rathke  changed:

   What|Removed |Added

 CC||er...@redhat.com

--- Comment #9 from Eike Rathke  ---
I don't even get the spell-check menu while editing the cell. No matter with or
without Automatic Spell Checking enabled. But I always get the normal cell
editing context menu.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 120896] Context menu does not appear over cell contents after the spell check context menu was active

2021-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120896

--- Comment #8 from Justin L  ---
Up for discussion is the sledgehammer fix
http://gerrit.libreoffice.org/c/core/+/126802

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 120896] Context menu does not appear over cell contents after the spell check context menu was active

2021-12-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120896

Justin L  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=10
   ||5355

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 120896] Context menu does not appear over cell contents after the spell check context menu was active

2021-12-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120896

--- Comment #7 from Justin L  ---
Totally getting into the weeds here.
It is a svl::SharedString that hasn't been updated.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 120896] Context menu does not appear over cell contents after the spell check context menu was active

2021-12-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120896

Justin L  changed:

   What|Removed |Added

 CC||jl...@mail.com

--- Comment #6 from Justin L  ---
I'm not convinced the identified commit is causal. I think it probably just
worked somehow - since apparently things were already very broken at that time
anyway.

There is a much higher level cache (the cell's contents cache) that is not
being cleared when the change is made. [But I haven't identified that yet.]

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 120896] Context menu does not appear over cell contents after the spell check context menu was active

2021-12-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120896

--- Comment #5 from Justin L  ---
The problem here is that the cache hasn't been cleared, so it still thinks
there are misspelled words. Both of these return true on the second right
click:

bSpellError = (mpSpellCheckCxt->isMisspelled(nColSpellError, nCellY));
if (bSpellError)
{
// Check and see if a misspelled word is under the mouse pointer.
bSpellError = IsSpellErrorAtPos(aPosPixel, nColSpellError, nCellY);
}

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 120896] Context menu does not appear over cell contents after the spell check context menu was active

2020-01-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120896

Aron Budea  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=81
   ||894

-- 
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 120896] Context menu does not appear over cell contents after the spell check context menu was active

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

Buovjaga  changed:

   What|Removed |Added

   Keywords||bibisected, bisected,
   ||regression
Version|6.0.6.2 release |4.2.0.4 release
 OS|Linux (All) |All

--- Comment #4 from Buovjaga  ---
Bibisected on Linux with 42max to
https://gerrit.libreoffice.org/plugins/gitiles/core/+/91923443e0d04218ae7124f439fc06a76f904462%5E!/
Fix context menu launch on mis-spelled word in a cell.

This was broken when the spell check handler was re-implemented
after the cell storage rework.

Same blame for bug 74087, which then received a fix.

-- 
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 120896] Context menu does not appear over cell contents after the spell check context menu was active

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

Buovjaga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||todven...@suomi24.fi
 OS|All |Linux (All)
 Ever confirmed|0   |1

--- Comment #3 from Buovjaga  ---
I reproduce. The context menu does appear, if you click in an empty part of the
cell. It fails to appear only, if you click on the text itself. Also tested
with gen backend.

Will test with older versions later.

Arch Linux 64-bit
Version: 6.2.5.2
Build ID: 6.2.5-1
CPU threads: 8; OS: Linux 5.2; UI render: default; VCL: kde5; 
Locale: fi-FI (fi_FI.UTF-8); UI-Language: en-US
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 120896] Context menu does not appear over cell contents after the spell check context menu was active

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

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Blocks||86349


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=86349
[Bug 86349] [META] Context menu bugs and enhancements
-- 
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 120896] Context menu does not appear over cell contents after the spell check context menu was active

2018-12-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120896

Kay  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

--- Comment #2 from Kay  ---
The issue persist in Safe Mode using the least radical option for safe mode.

To be more specific: when changing the string in Step 3 I never leave the cell,
and I can mark the string with right double clicks in step 4, but cannot invoke
a context menu.

I could try recording a video of the procedure, if it helps. (I don't know how
to visualize / record the mouse events).

-- 
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 120896] Context menu does not appear over cell contents after the spell check context menu was active

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

Xisco Faulí  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO
 CC||xiscofa...@libreoffice.org

--- Comment #1 from Xisco Faulí  ---
I can't reproduce it in

Versió: 6.1.3.1
ID de la construcció: 1:6.1.3~rc1-0ubuntu0.16.04.1
Fils de CPU: 4; SO: Linux 4.15; Renderitzador de la IU: per defecte; VCL: gtk3; 
Configuració local: en-US (ca_ES.UTF-8); Calc: group threaded

To be certain the reported issue is not
related to corruption in the user profile, could you please reset your
Libreoffice profile ( https://wiki.documentfoundation.org/UserProfile ) and
re-test?

I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' if the issue is still present

-- 
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 120896] Context menu does not appear over cell contents after the spell check context menu was active

2018-10-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120896

Kay  changed:

   What|Removed |Added

Summary|Context menu does not over  |Context menu does not
   |cell contents after the |appear over cell contents
   |spell check context menu|after the spell check
   |was active  |context menu was active

-- 
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