[Libreoffice-bugs] [Bug 154143] New: The explanatory image in Tips of The Day looked blurred and something not professional

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154143

Bug ID: 154143
   Summary: The explanatory image in Tips of The Day looked
blurred and something not professional
   Product: LibreOffice
   Version: 7.6.0.0 alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: riz...@libreoffice.org

Created attachment 185912
  --> https://bugs.documentfoundation.org/attachment.cgi?id=185912=edit
A merged screenshot of ToTD explanatory images

Steps to reproduce
1. Open any LibreOffice module
2. Navigate to Help > Show Tip of The Day
3. Click Next Tip to see all available tips

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

[Libreoffice-bugs] [Bug 151710] Toolbar button for enclosing text in () brackets

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151710

--- Comment #11 from Jim Raykowski  ---
The first [3] reference in my previous post

[3]
https://design.blog.documentfoundation.org/2018/02/28/easyhacking-all-about-terminology/

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

[Libreoffice-commits] core.git: 2 commits - vcl/win

2023-03-11 Thread Noel Grandin (via logerrit)
 vcl/win/dtrans/clipboardmanager.cxx  |   85 ++-
 vcl/win/dtrans/clipboardmanager.hxx  |7 +-
 vcl/win/dtrans/generic_clipboard.cxx |   40 ++--
 vcl/win/dtrans/generic_clipboard.hxx |6 +-
 4 files changed, 55 insertions(+), 83 deletions(-)

New commits:
commit be1c0c195166bb4d4056196599d88c864b42600b
Author: Noel Grandin 
AuthorDate: Fri Mar 10 15:59:09 2023 +0200
Commit: Noel Grandin 
CommitDate: Sun Mar 12 07:00:12 2023 +

osl::Mutex->std::mutex in dtrans::GenericClipboard

Change-Id: I5a4bbb9a445ec73422bca167ca658550eac26b7b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148638
Tested-by: Jenkins
Reviewed-by: Noel Grandin 

diff --git a/vcl/win/dtrans/generic_clipboard.cxx 
b/vcl/win/dtrans/generic_clipboard.cxx
index a614a6808c37..fd822f091e7e 100644
--- a/vcl/win/dtrans/generic_clipboard.cxx
+++ b/vcl/win/dtrans/generic_clipboard.cxx
@@ -22,6 +22,7 @@
 #include 
 #include 
 #include 
+#include 
 
 using namespace com::sun::star::datatransfer;
 using namespace com::sun::star::datatransfer::clipboard;
@@ -33,7 +34,6 @@ using namespace osl;
 using ::dtrans::GenericClipboard;
 
 GenericClipboard::GenericClipboard() :
-WeakComponentImplHelper< XClipboardEx, XClipboardNotifier, XServiceInfo, 
XInitialization > (m_aMutex),
 m_bInitialized(false)
 {
 }
@@ -72,7 +72,7 @@ Sequence< OUString > SAL_CALL 
GenericClipboard::getSupportedServiceNames()
 
 Reference< XTransferable > SAL_CALL GenericClipboard::getContents()
 {
-MutexGuard aGuard(m_aMutex);
+std::unique_lock aGuard(m_aMutex);
 return m_aContents;
 }
 
@@ -80,7 +80,7 @@ void SAL_CALL GenericClipboard::setContents(const Reference< 
XTransferable >& xT
   const Reference< XClipboardOwner >& 
xClipboardOwner )
 {
 // remember old values for callbacks before setting the new ones.
-ClearableMutexGuard aGuard(m_aMutex);
+std::unique_lock aGuard(m_aMutex);
 
 Reference< XClipboardOwner > oldOwner(m_aOwner);
 m_aOwner = xClipboardOwner;
@@ -88,25 +88,16 @@ void SAL_CALL GenericClipboard::setContents(const 
Reference< XTransferable >& xT
 Reference< XTransferable > oldContents(m_aContents);
 m_aContents = xTrans;
 
-aGuard.clear();
+aGuard.unlock();
 
 // notify old owner on loss of ownership
 if( oldOwner.is() )
 oldOwner->lostOwnership(static_cast < XClipboard * > (this), 
oldContents);
 
 // notify all listeners on content changes
-OInterfaceContainerHelper *pContainer =
-rBHelper.aLC.getContainer(cppu::UnoType::get());
-if (pContainer)
-{
-ClipboardEvent aEvent(static_cast < XClipboard * > (this), 
m_aContents);
-OInterfaceIteratorHelper aIterator(*pContainer);
-
-while (aIterator.hasMoreElements())
-{
-
static_cast(aIterator.next())->changedContents(aEvent);
-}
-}
+aGuard.lock();
+ClipboardEvent aEvent(static_cast < XClipboard * > (this), m_aContents);
+maClipboardListeners.notifyEach(aGuard, 
::changedContents, aEvent);
 }
 
 OUString SAL_CALL GenericClipboard::getName()
@@ -121,19 +112,18 @@ sal_Int8 SAL_CALL 
GenericClipboard::getRenderingCapabilities()
 
 void SAL_CALL GenericClipboard::addClipboardListener( const Reference< 
XClipboardListener >& listener )
 {
-MutexGuard aGuard( rBHelper.rMutex );
-OSL_ENSURE( !rBHelper.bInDispose, "do not add listeners in the dispose 
call" );
-OSL_ENSURE( !rBHelper.bDisposed, "object is disposed" );
-if (!rBHelper.bInDispose && !rBHelper.bDisposed)
-rBHelper.aLC.addInterface( cppu::UnoType::get(), 
listener );
+std::unique_lock aGuard( m_aMutex );
+OSL_ENSURE( !m_bDisposed, "object is disposed" );
+if (!m_bDisposed)
+maClipboardListeners.addInterface( aGuard, listener );
 }
 
 void SAL_CALL GenericClipboard::removeClipboardListener( const Reference< 
XClipboardListener >& listener )
 {
-MutexGuard aGuard( rBHelper.rMutex );
-OSL_ENSURE( !rBHelper.bDisposed, "object is disposed" );
-if (!rBHelper.bInDispose && !rBHelper.bDisposed)
-rBHelper.aLC.removeInterface( 
cppu::UnoType::get(), listener );
+std::unique_lock aGuard( m_aMutex );
+OSL_ENSURE( !m_bDisposed, "object is disposed" );
+if (!m_bDisposed)
+maClipboardListeners.removeInterface( aGuard, listener );
 }
 
 extern "C" SAL_DLLPUBLIC_EXPORT css::uno::XInterface*
diff --git a/vcl/win/dtrans/generic_clipboard.hxx 
b/vcl/win/dtrans/generic_clipboard.hxx
index 3c9126bcc535..cc1ad976b32b 100644
--- a/vcl/win/dtrans/generic_clipboard.hxx
+++ b/vcl/win/dtrans/generic_clipboard.hxx
@@ -19,7 +19,7 @@
 
 #pragma once
 
-#include 
+#include 
 
 #include 
 
@@ -31,17 +31,17 @@
 namespace dtrans
 {
 
-class GenericClipboard : public ::cppu::WeakComponentImplHelper <
+class GenericClipboard : public ::comphelper::WeakComponentImplHelper <
 css::datatransfer::clipboard::XClipboardEx,
   

[Libreoffice-bugs] [Bug 151710] Toolbar button for enclosing text in () brackets

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151710

--- Comment #10 from Jim Raykowski  ---
An article that illustrates how to add an UNO command for Calc[1]

Examples of two UNO commands added to Writer[2]

officecfg/registry/schema/org/openoffice/Office/UI/Commands.xcs contains
information on properties used in the .xcu file. There is also information
about commands here[3].

Decide on a name for the command. It probably should be generic to allow other
than enclosing selected text with parenthesis. Perhaps something like
.uno:EncloseText or .uno:SurroundText.

Loop through the cursor ring[3] to get each cursor selection PaM[4] and text.
Create an enclosed string by placing the selection text between open and close
parenthesis, adding optional enclosures is an advanced hack that can be done
for bonus points after implementing the parens request :-), then use the
IDocumentContentOperations::ReplaceRange function[5] to replace the text at the
PaM with the created enclosure string.  

[1]
https://dev.blog.documentfoundation.org/2022/02/23/adding-a-new-uno-command/
[2] https://gerrit.libreoffice.org/c/core/+/91605
[3] for (SwPaM& rPaM : SwWrtShell::GetCursor()->GetRingContainer())
[4] sw/inc/pam.hxx
[5] sw/source/core/view/viewsh.cxx SwViewShell::getIDocumentContentOperations() 
hint: SwWrtShell is derived from SwViewShell

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

[Libreoffice-bugs] [Bug 144813] Tabbed UI (drop down box) and sidebar options - rapid blinking/flashing when GTK_IM_MODULE=xim

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144813

Jewgeni  changed:

   What|Removed |Added

 CC||jewgeni.smir...@mail.ru

--- Comment #20 from Jewgeni  ---
*** Bug 154134 has been marked as a duplicate of this bug. ***

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

[Libreoffice-bugs] [Bug 154134] Annoying white blinking of welcome screen and some menu elements by moving the mouse (XFCE)

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154134

Jewgeni  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #5 from Jewgeni  ---
Hello and THANK YOU! I found the file .xinputrc in my home folder and deleted
it. After restarting the system, LibreOffice runs without this blinking. Yes,
this is a dupe of bug 144813, so I'll change the status accordingly. Cheers!

*** This bug has been marked as a duplicate of bug 144813 ***

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

[Libreoffice-bugs] [Bug 154139] Support specifying a character style for drop caps

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154139

Mike Kaganski  changed:

   What|Removed |Added

 Resolution|WORKSFORME  |INVALID

--- Comment #3 from Mike Kaganski  ---
WORKSFORME is for "there was a problem, but at some point, the problem
disappeared as a result of unknown changes". In this case, INVALID fits best,
since the issue did not exist, so the bug report told things that weren't true
(it told that it's not possible to do A, when it was a user mistake).

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

[Libreoffice-bugs] [Bug 153877] vertical Unicode SMP chars not displayed correctly when exported as PDF

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153877

Dieter  changed:

   What|Removed |Added

  Component|Writer  |Printing and PDF export

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

[Libreoffice-commits] core.git: extras/source

2023-03-11 Thread Galdam (via logerrit)
 extras/source/tipoftheday/expand_formula_bar.png |binary
 extras/source/tipoftheday/formdocuments.png  |binary
 extras/source/tipoftheday/formdocuments.svg  |1 +
 extras/source/tipoftheday/fraction.png   |binary
 extras/source/tipoftheday/fraction.svg   |1 +
 extras/source/tipoftheday/icon_sets.png  |binary
 extras/source/tipoftheday/icon_sets.svg  |1 +
 7 files changed, 3 insertions(+)

New commits:
commit 86ef24c5bdde4a283c1347ac385b1b537896db05
Author: Galdam 
AuthorDate: Wed Mar 8 22:35:59 2023 +0200
Commit: Rizal Muttaqin 
CommitDate: Sun Mar 12 05:43:03 2023 +

Update TipOfTheDay Images

- Update app icon in Fraction
- Update icon themes showcase
- Adjust some screenshot

Change-Id: I1af95c88093eb801b1b29fa9e542f75ed9d1d646
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148491
Tested-by: Jenkins
Reviewed-by: Rizal Muttaqin 

diff --git a/extras/source/tipoftheday/expand_formula_bar.png 
b/extras/source/tipoftheday/expand_formula_bar.png
index e1d87230b0a9..10a9eba37919 100644
Binary files a/extras/source/tipoftheday/expand_formula_bar.png and 
b/extras/source/tipoftheday/expand_formula_bar.png differ
diff --git a/extras/source/tipoftheday/formdocuments.png 
b/extras/source/tipoftheday/formdocuments.png
index a8bd178732c9..8133f6f29c24 100644
Binary files a/extras/source/tipoftheday/formdocuments.png and 
b/extras/source/tipoftheday/formdocuments.png differ
diff --git a/extras/source/tipoftheday/formdocuments.svg 
b/extras/source/tipoftheday/formdocuments.svg
new file mode 100644
index ..2f227ea0a709
--- /dev/null
+++ b/extras/source/tipoftheday/formdocuments.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink;>PDF 
FormChecboxRadio ButtonText Box
\ No newline at end of file
diff --git a/extras/source/tipoftheday/fraction.png 
b/extras/source/tipoftheday/fraction.png
index 4ee2e205815d..5c2c1bfd8a6c 100644
Binary files a/extras/source/tipoftheday/fraction.png and 
b/extras/source/tipoftheday/fraction.png differ
diff --git a/extras/source/tipoftheday/fraction.svg 
b/extras/source/tipoftheday/fraction.svg
new file mode 100644
index ..80697f2f6de5
--- /dev/null
+++ b/extras/source/tipoftheday/fraction.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink;>stroke-linecap="round" stroke-linejoin="round"/>font-family="Inter" font-size="3.52778" stroke-linecap="round" 
 >stroke-linejoin="round" x="12.987015" y="7.89616">font-family="Inter" font-size="3.52778" font-weight="bold" 
 >stroke-width=".264583" x="12.987015" y="7.89616">Fractionfill="#48484a" font-family="Inter" font-size="4.2" stroke-linecap="round" 
 >stroke-linejoin="round" x="8.072851" xml:space="preserve" 
 >y="21.695837">stroke-width=".264583" x="8.072851" y="21.695837">0.125  =  
 >1/8transform="matrix(.5291 0 0 .5291 25.4 24.341667)">
\ No newline at end of file
diff --git a/extras/source/tipoftheday/icon_sets.png 
b/extras/source/tipoftheday/icon_sets.png
index d98bd07a529d..fa335c5072d7 100644
Binary files a/extras/source/tipoftheday/icon_sets.png and 
b/extras/source/tipoftheday/icon_sets.png differ
diff --git a/extras/source/tipoftheday/icon_sets.svg 
b/extras/source/tipoftheday/icon_sets.svg
new file mode 100644
index ..c53edd81aa4c
--- /dev/null
+++ b/extras/source/tipoftheday/icon_sets.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink;><
 stop offset="1" stop-color="#dbdbdb"/>Icon Sets
\ No newline at end of file


[Libreoffice-bugs] [Bug 153809] Undo action (Ctrl+Z) does not revert changes to table design formatting

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153809

--- Comment #4 from Maxim Monastirsky  ---
(In reply to Stéphane Guillou (stragu) from comment #3)
> I assume changes to designs should be undoable
Absolutely.

> just like changes to styles.
Note that changes to style are neither undoable. This is a general problem in
Impress.

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

Baole Fang license statement

2023-03-11 Thread Baole Fang
   All of my past & future contributions to LibreOffice may be
   licensed under the MPLv2/LGPLv3+ dual license.


[Libreoffice-bugs] [Bug 153834] Ajout d'une fonction récepteur "=" dans un dessin "Carré" ou "Rectangle" ou "Zone de texte" dans LibreOffice Calc

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153834

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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

[Libreoffice-bugs] [Bug 153831] Disfonctionnement des animations dans LibreOffice Impress

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153831

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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

[Libreoffice-bugs] [Bug 150314] TABLAS DINAMICAS

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150314

--- Comment #4 from QA Administrators  ---
Dear antoniogomezort...@gmail.com,

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 153826] PROBLEM W/ CREATED FIELD

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153826

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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

[Libreoffice-bugs] [Bug 149583] Crash if I open the Printer properties dialog

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149583

--- Comment #3 from QA Administrators  ---
Dear domtour,

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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

[Libreoffice-bugs] [Bug 153815] Removing table jumps to start of document

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153815

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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

[Libreoffice-bugs] [Bug 150314] TABLAS DINAMICAS

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150314

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INSUFFICIENTDATA

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

[Libreoffice-bugs] [Bug 95037] Tabulation in twocolumn mode

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95037

--- Comment #11 from QA Administrators  ---
Dear p10,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 140919] [UI][Configuration]"Add more icon themes via extension" does not work if no document is open

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140919

--- Comment #3 from QA Administrators  ---
Dear pierre-yves samyn,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 88182] Sidebar: Undocked sidebar is an unusable size without resizing, doesn't expand automatically

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88182

--- Comment #13 from QA Administrators  ---
Dear tmacalp,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 140926] Memory usage still high after presentation has ended

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140926

--- Comment #3 from QA Administrators  ---
Dear Telesto,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 135709] Changing as character to 'to character' enabled parallel wrap with ODT and DOCX but wrap through in DOC

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135709

--- Comment #4 from QA Administrators  ---
Dear Telesto,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 116145] Inserting columns using selected (grouped) sheets causes calculation error.

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116145

--- Comment #7 from QA Administrators  ---
Dear Julian Morris,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 135203] gotoEndOfUsedArea doesn't give the correct position number of the Calc cell at the end when its background color is changed from the initial color.

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135203

--- Comment #4 from QA Administrators  ---
Dear Nukool Chompuparn,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 112344] Display of Hyperlinks in Text Boxes and Drawing Objects is Different to Display in Normal Text

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112344

--- Comment #5 from QA Administrators  ---
Dear Harald Koester,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 105503] Tabstoptype in ruler not changeable

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105503

--- Comment #6 from QA Administrators  ---
Dear Manfred,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 154142] Crash in: SfxUndoManager::SetMaxUndoActionCount(unsigned __int64)

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154142

m.a.riosv  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 CC||miguelangelrv@libreoffice.o
   ||rg
 Status|UNCONFIRMED |NEEDINFO

--- Comment #1 from m.a.riosv  ---
Please, could you add the step to reproduce the crash. And also, past here the
info in Menu/Help/About LibreOffice (there is a button to copy)

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

[Libreoffice-bugs] [Bug 90730] support overlay/no-overlay for chart title

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90730

--- Comment #9 from Ekta  ---
Hello, I want to work on this. Can someone please let me know how to get
started?

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

[Libreoffice-commits] core.git: icon-themes/sukapura icon-themes/sukapura_dark icon-themes/sukapura_dark_svg icon-themes/sukapura_svg

2023-03-11 Thread Rizal Muttaqin (via logerrit)
 icon-themes/sukapura/svx/res/adding-selection.png   |binary
 icon-themes/sukapura/svx/res/block-selection.png|binary
 icon-themes/sukapura/svx/res/doc_modified_feedback.png  |binary
 icon-themes/sukapura/svx/res/doc_modified_no.png|binary
 icon-themes/sukapura/svx/res/extending-selection.png|binary
 icon-themes/sukapura/svx/res/standard-selection.png |binary
 icon-themes/sukapura/sw/res/doublepage.png  |binary
 icon-themes/sukapura/sw/res/doublepage_a.png|binary
 icon-themes/sukapura/sw/res/emptypage.png   |binary
 icon-themes/sukapura/sw/res/emptypage_a.png |binary
 icon-themes/sukapura/sw/res/twopages.png|binary
 icon-themes/sukapura/sw/res/twopages_a.png  |binary
 icon-themes/sukapura_dark/svx/res/adding-selection.png  |binary
 icon-themes/sukapura_dark/svx/res/block-selection.png   |binary
 icon-themes/sukapura_dark/svx/res/doc_modified_feedback.png |binary
 icon-themes/sukapura_dark/svx/res/doc_modified_no.png   |binary
 icon-themes/sukapura_dark/svx/res/extending-selection.png   |binary
 icon-themes/sukapura_dark/svx/res/standard-selection.png|binary
 icon-themes/sukapura_dark/sw/res/doublepage.png |binary
 icon-themes/sukapura_dark/sw/res/doublepage_a.png   |binary
 icon-themes/sukapura_dark/sw/res/emptypage.png  |binary
 icon-themes/sukapura_dark/sw/res/emptypage_a.png|binary
 icon-themes/sukapura_dark/sw/res/twopages.png   |binary
 icon-themes/sukapura_dark/sw/res/twopages_a.png |binary
 icon-themes/sukapura_dark_svg/svx/res/adding-selection.svg  |2 +-
 icon-themes/sukapura_dark_svg/svx/res/block-selection.svg   |2 +-
 icon-themes/sukapura_dark_svg/svx/res/doc_modified_feedback.svg |2 +-
 icon-themes/sukapura_dark_svg/svx/res/doc_modified_no.svg   |2 +-
 icon-themes/sukapura_dark_svg/svx/res/extending-selection.svg   |2 +-
 icon-themes/sukapura_dark_svg/svx/res/standard-selection.svg|2 +-
 icon-themes/sukapura_dark_svg/sw/res/doublepage.svg |2 +-
 icon-themes/sukapura_dark_svg/sw/res/doublepage_a.svg   |2 +-
 icon-themes/sukapura_dark_svg/sw/res/emptypage.svg  |2 +-
 icon-themes/sukapura_dark_svg/sw/res/emptypage_a.svg|2 +-
 icon-themes/sukapura_dark_svg/sw/res/twopages.svg   |2 +-
 icon-themes/sukapura_dark_svg/sw/res/twopages_a.svg |2 +-
 icon-themes/sukapura_svg/svx/res/adding-selection.svg   |2 +-
 icon-themes/sukapura_svg/svx/res/block-selection.svg|2 +-
 icon-themes/sukapura_svg/svx/res/doc_modified_feedback.svg  |2 +-
 icon-themes/sukapura_svg/svx/res/doc_modified_no.svg|2 +-
 icon-themes/sukapura_svg/svx/res/extending-selection.svg|2 +-
 icon-themes/sukapura_svg/svx/res/standard-selection.svg |2 +-
 icon-themes/sukapura_svg/sw/res/doublepage.svg  |2 +-
 icon-themes/sukapura_svg/sw/res/doublepage_a.svg|2 +-
 icon-themes/sukapura_svg/sw/res/emptypage.svg   |2 +-
 icon-themes/sukapura_svg/sw/res/emptypage_a.svg |2 +-
 icon-themes/sukapura_svg/sw/res/twopages.svg|2 +-
 icon-themes/sukapura_svg/sw/res/twopages_a.svg  |2 +-
 48 files changed, 24 insertions(+), 24 deletions(-)

New commits:
commit d887b6a6fa2a572f48498839c5a68791c3196634
Author: Rizal Muttaqin 
AuthorDate: Sat Mar 11 10:43:48 2023 +0700
Commit: Rizal Muttaqin 
CommitDate: Sun Mar 12 02:13:41 2023 +

Relates tdf#153344 - Sukapura: Sync outline color

Change-Id: I710be3f227bf45740313f6ebd662b16653927a97
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148676
Tested-by: Jenkins
Reviewed-by: Rizal Muttaqin 

diff --git a/icon-themes/sukapura/svx/res/adding-selection.png 
b/icon-themes/sukapura/svx/res/adding-selection.png
index 93e689681475..12fcfebb49f4 100644
Binary files a/icon-themes/sukapura/svx/res/adding-selection.png and 
b/icon-themes/sukapura/svx/res/adding-selection.png differ
diff --git a/icon-themes/sukapura/svx/res/block-selection.png 
b/icon-themes/sukapura/svx/res/block-selection.png
index 0c33c6c8701b..bffdb154035b 100644
Binary files a/icon-themes/sukapura/svx/res/block-selection.png and 
b/icon-themes/sukapura/svx/res/block-selection.png differ
diff --git a/icon-themes/sukapura/svx/res/doc_modified_feedback.png 
b/icon-themes/sukapura/svx/res/doc_modified_feedback.png
index a0e7a1a03a51..35c687da43e9 100644
Binary files a/icon-themes/sukapura/svx/res/doc_modified_feedback.png and 
b/icon-themes/sukapura/svx/res/doc_modified_feedback.png differ
diff --git a/icon-themes/sukapura/svx/res/doc_modified_no.png 

[Libreoffice-commits] core.git: configure.ac

2023-03-11 Thread Christian Lohmaier (via logerrit)
 configure.ac |4 
 1 file changed, 4 insertions(+)

New commits:
commit 5f20f4ff21f597e55d899f5ea4dfe1c1fa5824bc
Author: Christian Lohmaier 
AuthorDate: Sat Mar 11 21:22:55 2023 +0100
Commit: Christian Lohmaier 
CommitDate: Sun Mar 12 01:06:08 2023 +

cross-compiling on windows needs openssl to build internal python

→ add back OPENSSL as a permissable sub-build target and explicitly
enable openssl when cross-compiling for windows_aarch64

partially reverts 4132bd5477c25a505f7bfbee1e7dcf6602c927d3

Change-Id: Ic162a2f0c6db377eadedb149fb428f0f015539f9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148688
Tested-by: Jenkins
Reviewed-by: Christian Lohmaier 

diff --git a/configure.ac b/configure.ac
index d8ec4664bd25..17fa8afac23a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -5689,6 +5689,9 @@ if test "$cross_compiling" = "yes"; then
 sub_conf_opts="$sub_conf_opts --with-main-module=writer"
 fi
 fi
+# windows uses full-internal python and that in turn relies on openssl, so 
also enable openssl
+# when cross-compiling for aarch64, overriding the defaults below
+test "${PLATFORMID}" = "windows_aarch64" && sub_conf_opts="$sub_conf_opts 
--enable-openssl --with-tls=openssl"
 
 # Don't bother having configure look for stuff not needed for the build 
platform anyway
 # WARNING: any option with an argument containing spaces must be handled 
separately (see --with-theme)
@@ -5772,6 +5775,7 @@ if test "$cross_compiling" = "yes"; then
 LIBXSLT
 MDDS
 NATIVE
+OPENSSL
 ORCUS
 PYTHON
 SCRIPTING


[Libreoffice-bugs] [Bug 154142] New: Crash in: SfxUndoManager::SetMaxUndoActionCount(unsigned __int64)

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154142

Bug ID: 154142
   Summary: Crash in:
SfxUndoManager::SetMaxUndoActionCount(unsigned
__int64)
   Product: LibreOffice
   Version: 7.5.0.3 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: gords...@shaw.ca

This bug was filed from the crash reporting server and is
br-79a5c643-2e5d-4423-93f1-9f7db94dea4b.
=

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

[Libreoffice-bugs] [Bug 154137] Two new functions please: NOW.NV & TODAY.NV.

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154137

Eike Rathke  changed:

   What|Removed |Added

   Hardware|Other   |All
 OS|macOS (All) |All
 CC||er...@redhat.com

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

[Libreoffice-bugs] [Bug 154120] Need ability to mark characters to be ignored for line height calculation

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154120

--- Comment #5 from Regina Henschel  ---
(In reply to Eyal Rozenberg from comment #0)
> LibreOffice calculates line height based on aspects of the font(s) used for
> the characters on the line. However, occasionally, you may want to keep the
> line height uniform despite the line containing a couple of characters in
> another language, with the computed line height being different.

For that purpose you can set the line space to a fixed value.

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

[Libreoffice-ux-advise] [Bug 154120] Need ability to mark characters to be ignored for line height calculation

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154120

--- Comment #5 from Regina Henschel  ---
(In reply to Eyal Rozenberg from comment #0)
> LibreOffice calculates line height based on aspects of the font(s) used for
> the characters on the line. However, occasionally, you may want to keep the
> line height uniform despite the line containing a couple of characters in
> another language, with the computed line height being different.

For that purpose you can set the line space to a fixed value.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

[Libreoffice-ux-advise] [Bug 154140] Bring back the transparency option

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154140

--- Comment #2 from Eyal Rozenberg  ---
What was the rationale for moving it to Expert Options?

-- 
You are receiving this mail because:
You are on the CC list for the bug.

[Libreoffice-bugs] [Bug 154140] Bring back the transparency option

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154140

--- Comment #2 from Eyal Rozenberg  ---
What was the rationale for moving it to Expert Options?

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

[Libreoffice-bugs] [Bug 154125] INDEX() does not return a vector of an array if that is only a vector, but only the first element

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154125

Eike Rathke  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |er...@redhat.com
   |desktop.org |

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

[Libreoffice-bugs] [Bug 154035] setting tabs in writer not possible from clic on top ruler (GTK3?)

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154035

raal  changed:

   What|Removed |Added

  Regression By||Michael Stahl
   Keywords||bibisected, bisected
 CC||michael.st...@allotropia.de

--- Comment #3 from raal  ---
This seems to have begun at the below commit in bibisect repository/OS
linux-64-7.6.
Adding Cc: to Michael Stahl ; Could you possibly take a look at this one?
Thanks

134be7c58b05aa3cec939901f66430b2f87b8e4e is the first bad commit
commit 134be7c58b05aa3cec939901f66430b2f87b8e4e
Author: Jenkins Build User 
Date:   Fri Feb 24 09:15:20 2023 +0100

source sha:db115bec9254417ef7a3faf687478fe5424ab378

147024: tdf#78510 sw,cui: split SvxLRSpaceItem for SwTextNode, SwTextFormatColl
| https://gerrit.libreoffice.org/c/core/+/147024

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

[Libreoffice-bugs] [Bug 154141] LO Writer will not print to HP OJ Pro 8610

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154141

m.a.riosv  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 CC||miguelangelrv@libreoffice.o
   ||rg
 Status|UNCONFIRMED |NEEDINFO

--- Comment #1 from m.a.riosv  ---
Please paste here your OS and LibreOffice version, Menu/Help/About LibreOffice,
there is an icon to copy.

If you quit LibreOffice, it stays in the queue.

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

[Libreoffice-bugs] [Bug 154035] setting tabs in writer not possible from clic on top ruler (GTK3?)

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154035

raal  changed:

   What|Removed |Added

   Keywords||regression
 Ever confirmed|0   |1
 CC||r...@post.cz
 Status|UNCONFIRMED |NEW

--- Comment #2 from raal  ---
Confirm with Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 288c0920a8475f9f2c537212e04aa7649192ad8c
CPU threads: 4; OS: Linux 5.15; UI render: default; VCL: gtk3
Locale: cs-CZ (cs_CZ.UTF-8); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 154125] INDEX() does not return a vector of an array if that is only a vector, but only the first element

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154125

Eike Rathke  changed:

   What|Removed |Added

 CC||mikekagan...@hotmail.com

--- Comment #5 from Eike Rathke  ---
@Mike:
Does full (non-online) Excel do vector replication in INDEX()? i.e. with
array-row separator ; semicolon does

=INDEX({1;2};0;2)

return error, or does it return column vector {1;2}? (transform separators to
whatever is correct for your Excel..)

Similar, does

=INDEX({1;2};2;2)

return error, or 2?

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

[Libreoffice-bugs] [Bug 154138] "Change line color" animation effect for rectangle, bottom line

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154138

m.a.riosv  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW
 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #4 from m.a.riosv  ---
Reproducible
Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: a179f6c91692076e7e17babf4890638caa398384
CPU threads: 4; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: es-ES (es_ES); UI: en-US Calc: CL threaded Jumbo

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

[Libreoffice-bugs] [Bug 154140] Bring back the transparency option

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154140

Telesto  changed:

   What|Removed |Added

   Keywords|needsUXEval |

--- Comment #1 from Telesto  ---
FWIW: The TransparentSelectionPercentage of 75 to high for my taste. To much
transparency, making hard to notice the cell selection on my macbook with
greenish system colors

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

[Libreoffice-ux-advise] [Bug 154140] Bring back the transparency option

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154140

Telesto  changed:

   What|Removed |Added

   Keywords|needsUXEval |

--- Comment #1 from Telesto  ---
FWIW: The TransparentSelectionPercentage of 75 to high for my taste. To much
transparency, making hard to notice the cell selection on my macbook with
greenish system colors

-- 
You are receiving this mail because:
You are on the CC list for the bug.

[Libreoffice-bugs] [Bug 154137] Two new functions please: NOW.NV & TODAY.NV.

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154137

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #3 from m.a.riosv  ---
But such non-volatile functions don't avoid to change with a calculation [F9]
or a hard recacl [Ctrl+Shift+F9]

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

[Libreoffice-bugs] [Bug 153283] Application crashes when printing in Windows 10 from Writer or Calc (HP Printer)

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153283

Dieter  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 154141] LO Writer will not print to HP OJ Pro 8610

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154141

Dieter  changed:

   What|Removed |Added

  Component|Writer  |Printing and PDF export
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=15
   ||3283
 CC||dgp-m...@gmx.de

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

[Libreoffice-ux-advise] [Bug 154140] Bring back the transparency option

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154140

Telesto  changed:

   What|Removed |Added

   Keywords||needsUXEval
 CC||eyalr...@gmx.com,
   ||heiko.tietze@documentfounda
   ||tion.org,
   ||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||tele...@surfxs.nl

-- 
You are receiving this mail because:
You are on the CC list for the bug.

[Libreoffice-bugs] [Bug 154140] Bring back the transparency option

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154140

Telesto  changed:

   What|Removed |Added

   Keywords||needsUXEval
 CC||eyalr...@gmx.com,
   ||heiko.tietze@documentfounda
   ||tion.org,
   ||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||tele...@surfxs.nl

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

[Libreoffice-bugs] [Bug 154035] setting tabs in writer not possible from clic on top ruler (GTK3?)

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154035

Telesto  changed:

   What|Removed |Added

Summary|setting tabs in writer not  |setting tabs in writer not
   |possible from clic on top   |possible from clic on top
   |ruler   |ruler (GTK3?)

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

[Libreoffice-bugs] [Bug 154125] INDEX() does not return a vector of an array if that is only a vector, but only the first element

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154125

--- Comment #4 from Eike Rathke  ---
You are complicating things and just repeating what I gave..

=INDEX({11;21};0;1)
CSE is exactly the column vector case I said is not working as it should.

=INDEX({11|12};1;0)
CSE the same but for row vector.

Fwiw, you can see in the Function Wizard what actually is returned for the
examples; whether the formula is entered as CSE-array or normal only affects
how the final result is displayed, either as full array result (CSE) or just
the single top left element's value (normal).


> in Excel I believe that =INDEX({1,2};2) should had been #REF!

But it isn't, is it?

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

[Libreoffice-bugs] [Bug 154134] Annoying white blinking of welcome screen and some menu elements by moving the mouse (XFCE)

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154134

--- Comment #4 from V Stuart Foote  ---
see the work up in see also bug 144813

If your GTK_IM_MODULE=xim, rework with an "export GTK_IM_MODULE=ibus", maybe
deleting ~/.xinputrc, to see if that resolves. 

If so, this is a dupe of bug 144813

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

[Libreoffice-bugs] [Bug 154141] New: LO Writer will not print to HP OJ Pro 8610

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154141

Bug ID: 154141
   Summary: LO Writer will not print to HP OJ Pro 8610
   Product: LibreOffice
   Version: 7.5.1.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ajc...@gmail.com

First day using LO Writer. I cannot print a simple document to my HP OffieJet
Pro 8610. I can see the document in the queue, but I cannot make it print. It
shows "Unknown Status"

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

[Libreoffice-bugs] [Bug 154135] Librewriter autocomplete no long working

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154135

V Stuart Foote  changed:

   What|Removed |Added

 Resolution|FIXED   |WORKSFORME

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

[Libreoffice-bugs] [Bug 154137] Two new functions please: NOW.NV & TODAY.NV.

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154137

--- Comment #2 from Alexander Van den Panhuysen 
 ---
Why do you link 154137 to 154136 ?
These are two different things!
154136 is about not working shortcuts on an AZERTY keyboard, and 154137 is a
request to have two new functions.

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

[Libreoffice-commits] core.git: icon-themes/karasa_jaga icon-themes/karasa_jaga_svg

2023-03-11 Thread Rizal Muttaqin (via logerrit)
 icon-themes/karasa_jaga/svx/res/adding-selection.png  |binary
 icon-themes/karasa_jaga/svx/res/block-selection.png   |binary
 icon-themes/karasa_jaga/svx/res/doc_modified_feedback.png |binary
 icon-themes/karasa_jaga/svx/res/doc_modified_no.png   |binary
 icon-themes/karasa_jaga/svx/res/extending-selection.png   |binary
 icon-themes/karasa_jaga/svx/res/standard-selection.png|binary
 icon-themes/karasa_jaga_svg/svx/res/adding-selection.svg  |2 +-
 icon-themes/karasa_jaga_svg/svx/res/block-selection.svg   |2 +-
 icon-themes/karasa_jaga_svg/svx/res/doc_modified_feedback.svg |2 +-
 icon-themes/karasa_jaga_svg/svx/res/doc_modified_no.svg   |2 +-
 icon-themes/karasa_jaga_svg/svx/res/extending-selection.svg   |2 +-
 icon-themes/karasa_jaga_svg/svx/res/standard-selection.svg|2 +-
 12 files changed, 6 insertions(+), 6 deletions(-)

New commits:
commit f5c466502a302b8e56486119e5e318fb02b479fe
Author: Rizal Muttaqin 
AuthorDate: Sat Mar 11 13:09:06 2023 +0700
Commit: Adolfo Jayme Barrientos 
CommitDate: Sat Mar 11 22:06:45 2023 +

tdf#153344 KJ: Unify color and reduce cursor thickness

Change-Id: I3911bf219e5663d5e314fe3703995c4880e0d99e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148677
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/icon-themes/karasa_jaga/svx/res/adding-selection.png 
b/icon-themes/karasa_jaga/svx/res/adding-selection.png
index 3368ad6bb0a5..467237c487dc 100644
Binary files a/icon-themes/karasa_jaga/svx/res/adding-selection.png and 
b/icon-themes/karasa_jaga/svx/res/adding-selection.png differ
diff --git a/icon-themes/karasa_jaga/svx/res/block-selection.png 
b/icon-themes/karasa_jaga/svx/res/block-selection.png
index 25743d709827..6c30b3612459 100644
Binary files a/icon-themes/karasa_jaga/svx/res/block-selection.png and 
b/icon-themes/karasa_jaga/svx/res/block-selection.png differ
diff --git a/icon-themes/karasa_jaga/svx/res/doc_modified_feedback.png 
b/icon-themes/karasa_jaga/svx/res/doc_modified_feedback.png
index fa7f2da0465b..d30579401057 100644
Binary files a/icon-themes/karasa_jaga/svx/res/doc_modified_feedback.png and 
b/icon-themes/karasa_jaga/svx/res/doc_modified_feedback.png differ
diff --git a/icon-themes/karasa_jaga/svx/res/doc_modified_no.png 
b/icon-themes/karasa_jaga/svx/res/doc_modified_no.png
index 82cfa1f1035f..d30579401057 100644
Binary files a/icon-themes/karasa_jaga/svx/res/doc_modified_no.png and 
b/icon-themes/karasa_jaga/svx/res/doc_modified_no.png differ
diff --git a/icon-themes/karasa_jaga/svx/res/extending-selection.png 
b/icon-themes/karasa_jaga/svx/res/extending-selection.png
index 1b213411d0ff..25ccd767b78a 100644
Binary files a/icon-themes/karasa_jaga/svx/res/extending-selection.png and 
b/icon-themes/karasa_jaga/svx/res/extending-selection.png differ
diff --git a/icon-themes/karasa_jaga/svx/res/standard-selection.png 
b/icon-themes/karasa_jaga/svx/res/standard-selection.png
index c98be5de9428..88630f724384 100644
Binary files a/icon-themes/karasa_jaga/svx/res/standard-selection.png and 
b/icon-themes/karasa_jaga/svx/res/standard-selection.png differ
diff --git a/icon-themes/karasa_jaga_svg/svx/res/adding-selection.svg 
b/icon-themes/karasa_jaga_svg/svx/res/adding-selection.svg
index dd4eaa13cf8a..44541ddde4ea 100644
--- a/icon-themes/karasa_jaga_svg/svx/res/adding-selection.svg
+++ b/icon-themes/karasa_jaga_svg/svx/res/adding-selection.svg
@@ -1 +1 @@
-http://www.w3.org/2000/svg;>
\ No newline at end of file
+http://www.w3.org/2000/svg;>
\ No newline at end of file
diff --git a/icon-themes/karasa_jaga_svg/svx/res/block-selection.svg 
b/icon-themes/karasa_jaga_svg/svx/res/block-selection.svg
index c8b165dbb1c5..3fef7ca3b462 100644
--- a/icon-themes/karasa_jaga_svg/svx/res/block-selection.svg
+++ b/icon-themes/karasa_jaga_svg/svx/res/block-selection.svg
@@ -1 +1 @@
-http://www.w3.org/2000/svg;>
\ No newline at end of file
+http://www.w3.org/2000/svg;>
\ No newline at end of file
diff --git a/icon-themes/karasa_jaga_svg/svx/res/doc_modified_feedback.svg 
b/icon-themes/karasa_jaga_svg/svx/res/doc_modified_feedback.svg
index 61f18cefa00e..c6e6f193a133 100644
--- a/icon-themes/karasa_jaga_svg/svx/res/doc_modified_feedback.svg
+++ b/icon-themes/karasa_jaga_svg/svx/res/doc_modified_feedback.svg
@@ -1 +1 @@
-http://www.w3.org/2000/svg;>
\ No newline at end of file
+http://www.w3.org/2000/svg;>
\ No newline at end of file
diff --git a/icon-themes/karasa_jaga_svg/svx/res/doc_modified_no.svg 
b/icon-themes/karasa_jaga_svg/svx/res/doc_modified_no.svg
index aafad23bcf8e..c6e6f193a133 100644
--- a/icon-themes/karasa_jaga_svg/svx/res/doc_modified_no.svg
+++ b/icon-themes/karasa_jaga_svg/svx/res/doc_modified_no.svg
@@ -1 +1 @@
-http://www.w3.org/2000/svg;>
\ No newline at end of file
+http://www.w3.org/2000/svg;>
\ No newline at end of file
diff --git a/icon-themes/karasa_jaga_svg/svx/res/extending-selection.svg 

[Libreoffice-commits] core.git: Branch 'libreoffice-7-4' - vcl/source

2023-03-11 Thread Caolán McNamara (via logerrit)
 vcl/source/treelist/svimpbox.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit b414cb574d0641d387a8c6190112746929e88d52
Author: Caolán McNamara 
AuthorDate: Fri Mar 10 15:53:06 2023 +
Commit: Adolfo Jayme Barrientos 
CommitDate: Sat Mar 11 22:03:18 2023 +

Resolves: tdf#132847 large scrolls that cause page up/down are still 
"scrolls"

and should emit NotifyScrolled even if the scroll is large enough that
the call to internal "scroll" optimization is omitted.

(and like cursor up/down call NotifyScrolled after ShowCursor)

Change-Id: Ie605bde8ce8312b2ff2be9fb471e2f7516b355d9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148623
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/vcl/source/treelist/svimpbox.cxx b/vcl/source/treelist/svimpbox.cxx
index 453edb8dc53b..5d3202f266c3 100644
--- a/vcl/source/treelist/svimpbox.cxx
+++ b/vcl/source/treelist/svimpbox.cxx
@@ -402,10 +402,10 @@ void SvImpLBox::PageDown( sal_uInt16 nDelta )
 m_pView->PaintImmediately();
 m_pView->Scroll( 0, nScroll, aArea, ScrollFlags::NoChildren );
 m_pView->PaintImmediately();
-m_pView->NotifyScrolled();
 }
 
 ShowCursor( true );
+m_pView->NotifyScrolled();
 }
 
 void SvImpLBox::PageUp( sal_uInt16 nDelta )
@@ -437,10 +437,10 @@ void SvImpLBox::PageUp( sal_uInt16 nDelta )
 m_pView->PaintImmediately();
 m_pView->Scroll( 0, nEntryHeight*nRealDelta, aArea, 
ScrollFlags::NoChildren );
 m_pView->PaintImmediately();
-m_pView->NotifyScrolled();
 }
 
 ShowCursor( true );
+m_pView->NotifyScrolled();
 }
 
 void SvImpLBox::KeyUp( bool bPageUp )


[Libreoffice-bugs] [Bug 154135] Librewriter autocomplete no long working

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154135

ctyou...@gmail.com changed:

   What|Removed |Added

 Resolution|WORKSFORME  |FIXED

--- Comment #2 from ctyou...@gmail.com ---
Thank you that appears to fix it.  Thought i had it changed.

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

[Libreoffice-bugs] [Bug 154139] Support specifying a character style for drop caps

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154139

Eyal Rozenberg  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 70180] Enhance Drop Caps effect to support Raised, Sunken and Dropped initials

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=70180

Eyal Rozenberg  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 154139] Support specifying a character style for drop caps

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154139

Eyal Rozenberg  changed:

   What|Removed |Added

 Resolution|--- |WORKSFORME
 Status|UNCONFIRMED |RESOLVED

--- Comment #2 from Eyal Rozenberg  ---
(In reply to RGB from comment #1)
> It's already possible to assign character styles to drop caps

You're right, sorry.

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

[Libreoffice-bugs] [Bug 154140] New: Bring back the transparency option

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154140

Bug ID: 154140
   Summary: Bring back the transparency option
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ville...@t-online.de

Description:
Old versions had Tools>Options>LibreOffice>View
Selection.Transparency on/off and percentage

Transparency option is now hidden in the "expert options".

My most popular answer on ask.libreoffice.org is this:
https://ask.libreoffice.org/t/asked-before-calc-ver-7-3-1-3-highlighted-cell-color/75738/4


Steps to Reproduce:
1. Select any cell or range in Calc. Select any text in any component
2.
3.

Actual Results:
Selection is highlighted in a color that is set up on system level. A
spreadsheet's active cell has a thin coloured border.

Expected Results:
With org.openoffice.Office.Common.DrawingLayer.TransparentSelection = OFF all
selections are highlighted in colors complementary to the highlighted items,
borders, text, areas which is very easy to spot even in colorful situations.


Reproducible: Always


User Profile Reset: No

Additional Info:
Office suites are used by elderly people who suffer a lot from bad UI design.

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

[Libreoffice-bugs] [Bug 154137] Two new functions please: NOW.NV & TODAY.NV.

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154137

ady  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 154136] In Help I found Command+Shift+; to have a timestamp in a Calc cell, but it is doing nothing.

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154136

ady  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 94763] Changing theme in Design sidebar deck isn't undoable (steps in comment 8)

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94763

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 153809] Undo action (Ctrl+Z) does not revert changes to table design formatting

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153809

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Blocks||100366
 CC||momonas...@gmail.com,
   ||stephane.guillou@libreoffic
   ||e.org
Summary|Undo action (Ctrl+Z) does   |Undo action (Ctrl+Z) does
   |not revert some operations  |not revert changes to table
   ||design formatting
Version|7.5.0.3 release |7.5.0.0 alpha1+
 Whiteboard| QA:needsComment|
   Keywords||implementationError
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=94
   ||763
 Status|UNCONFIRMED |NEW

--- Comment #3 from Stéphane Guillou (stragu) 
 ---
Reproduced in:

Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 082d009b6a156faa74c9966b0dffc5fa6ce22287
CPU threads: 8; OS: Linux 5.15; UI render: default; VCL: gtk3
Locale: en-AU (en_AU.UTF-8); UI: en-US
Calc: threaded

Maxim, what do you think? I assume changes to designs should be undoable just
like changes to styles.
I tested at f23d3661ab04601650db95f846081317fc06801d and it was already like
that back then.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=100366
[Bug 100366] [META] Impress/Draw table bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 100366] [META] Impress/Draw table bugs and enhancements

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100366

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||153809


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=153809
[Bug 153809] Undo action (Ctrl+Z) does not revert changes to table design
formatting
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 154139] Support specifying a character style for drop caps

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154139

RGB  changed:

   What|Removed |Added

 CC||rgb.m...@gmail.com

--- Comment #1 from RGB  ---
It's already possible to assign character styles to drop caps, just pick one
from the "character style" drop down list under "Contents" when "Display drop
caps" is checked.

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

[Libreoffice-bugs] [Bug 154125] INDEX() does not return a vector of an array if that is only a vector, but only the first element

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154125

--- Comment #3 from ady  ---
Using LO 7.4.5, here is what I have tested ("|" is column separator, ";" as
both row and argument separators).

In a pre-dynamic formula context, with INDEX() in array form *by itself*:


A_
{ =INDEX({11|12;21|22};0;1) } (with CSE)
=11 (1st row, 1st col)
=21 (2nd row, 1st col)

OK.


B_
=INDEX({11|12;21|22};0;1) (_no_ CSE)
=11 (1st row only)

OK.


C_
{ =INDEX({11;21};0;1) } (with CSE)
=11 (1st row)

NOT OK. We should also get:
=21 (2nd row)

D_
=INDEX({11;21};0;1) (_no_ CSE)
=11 (1st row)

OK, but expected considering result "C" above.


E_
{ =INDEX({11|12};1;0) } (with CSE)
=11 (1st col)
NOT OK. We should also get:
=12 (2nd col)

F_
=INDEX({11|12};1;0) (_no_ CSE)
=11 (1st col)

OK, but expected considering result "E" above.


Considering that those are wrong results already, I have not tested additional
possibilities such as default values when arguments are omitted, or
out-of-scope arguments, or wrong-type arguments.


Please note that these are examples of INDEX() by itself. When INDEX() is used
as lookup_array for MATCH() (as in the example in comment 0), then CSE should
not be required in order to obtain the array to be fed for MATCH().

Once the above examples get to work, I should be able to test them in
combination with MATCH() as in the example in comment 0.

PS: FWIW, in Excel I believe that =INDEX({1,2};2) should had been #REF!, IIUC
(whether with CSE or not).

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

[Libreoffice-bugs] [Bug 154134] Annoying white blinking of welcome screen and some menu elements by moving the mouse (XFCE)

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154134

--- Comment #3 from Jewgeni  ---
If I understand your question correctly: I have the xim module. What exactly
must be changed?

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

[Libreoffice-bugs] [Bug 154139] Support specifying a character style for drop caps

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154139

Eyal Rozenberg  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 70180] Enhance Drop Caps effect to support Raised, Sunken and Dropped initials

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=70180

Eyal Rozenberg  changed:

   What|Removed |Added

 CC||eyalr...@gmx.com
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=15
   ||4139

--- Comment #19 from Eyal Rozenberg  ---
Good idea.

Also, perhaps we should support setting a CS for the drop-cap contents. Opening
a bug for that.

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

[Libreoffice-bugs] [Bug 154139] New: Support specifying a character style for drop caps

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154139

Bug ID: 154139
   Summary: Support specifying a character style for drop caps
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: eyalr...@gmx.com

Paragraph styles support a "drop cap" of the first character or word. Now, when
using drop caps, one often wants to play with aspects of the font, draw a
border around the drop cap etc. That can be achieved either with a Character
Style. It therefore makes sense to specify a CS to set the drop cap in, which
may be different than the paragraph's "own" CS features.

Inspired by: Bug 70180.

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

[Libreoffice-bugs] [Bug 107661] [META] SIDEBAR: Design (aka Document themes) tab

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107661

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||94763


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=94763
[Bug 94763] Changing theme in Design sidebar deck isn't undoable (steps in
comment 8)
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 94763] Changing theme in Design sidebar deck isn't undoable (steps in comment 8)

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94763

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Blocks||107661
 CC||stephane.guillou@libreoffic
   ||e.org
Summary|Changing theme in Design|Changing theme in Design
   |isn't undoable  |sidebar deck isn't undoable
   ||(steps in comment 8)
   Hardware|Other   |All

--- Comment #8 from Stéphane Guillou (stragu) 
 ---
Still the case in:

Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 082d009b6a156faa74c9966b0dffc5fa6ce22287
CPU threads: 8; OS: Linux 5.15; UI render: default; VCL: gtk3
Locale: en-AU (en_AU.UTF-8); UI: en-US
Calc: threaded

Steps:
1. Tools > Options > Advanced > Enable experimental features > OK (needs a
restart)
2. Add a Heading level 1 in document body
3. In the Sidebar, open the Design deck, double-click e.g. the "Modern" style
preset, see the heading change
4. Undo

Result: applying the style preset can't be undone.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107661
[Bug 107661] [META] SIDEBAR: Design (aka Document themes) tab
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: Branch 'distro/collabora/co-23.05' - desktop/source include/LibreOfficeKit vcl/source

2023-03-11 Thread Michael Meeks (via logerrit)
 desktop/source/lib/init.cxx |1 +
 include/LibreOfficeKit/LibreOfficeKit.h |2 +-
 vcl/source/app/svapp.cxx|4 ++--
 vcl/source/gdi/impgraph.cxx |   11 +--
 vcl/source/graphic/Manager.cxx  |3 +--
 5 files changed, 14 insertions(+), 7 deletions(-)

New commits:
commit 8fd1dacbc4fdb586ea9c7bc0f405641eb3058e04
Author: Michael Meeks 
AuthorDate: Sat Mar 11 15:56:04 2023 +
Commit: Michael Meeks 
CommitDate: Sat Mar 11 21:06:00 2023 +

lok: cleanup trimMemory capability, and expand dumpState to caches.

Being able to trigger some more aggressive memory saving is
useful in for both online and mobile.

Signed-off-by: Michael Meeks 
Change-Id: If740469a59e7e1896e5952dbcd28742446c7559d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148684

diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx
index 28849bb4161e..07bb6be18fa0 100644
--- a/desktop/source/lib/init.cxx
+++ b/desktop/source/lib/init.cxx
@@ -2567,6 +2567,7 @@ LibLibreOffice_Impl::LibLibreOffice_Impl()
 m_pOfficeClass->setOption = lo_setOption;
 m_pOfficeClass->dumpState = lo_dumpState;
 m_pOfficeClass->extractRequest = lo_extractRequest;
+m_pOfficeClass->trimMemory = lo_trimMemory;
 
 gOfficeClass = m_pOfficeClass;
 }
diff --git a/include/LibreOfficeKit/LibreOfficeKit.h 
b/include/LibreOfficeKit/LibreOfficeKit.h
index 219013f6fb9f..e98ea6f47f42 100644
--- a/include/LibreOfficeKit/LibreOfficeKit.h
+++ b/include/LibreOfficeKit/LibreOfficeKit.h
@@ -119,7 +119,7 @@ struct _LibreOfficeKitClass
 /// @see lok::Office::setOption
 void (*setOption) (LibreOfficeKit* pThis, const char* pOption, const char* 
pValue);
 
-/// @see lok::Document::dumpState
+/// @see lok::Office::dumpState
 /// @since LibreOffice 7.5
 void (*dumpState) (LibreOfficeKit* pThis, const char* pOptions, char** 
pState);
 
diff --git a/vcl/source/app/svapp.cxx b/vcl/source/app/svapp.cxx
index adc98af951ef..5359ac139532 100644
--- a/vcl/source/app/svapp.cxx
+++ b/vcl/source/app/svapp.cxx
@@ -1887,8 +1887,8 @@ void trimMemory(int nTarget)
 return;
 pSVData->dropCaches();
 vcl::graphic::Manager::get().dropCache();
-// free up any deeper dirtied thread stacks.
-comphelper::ThreadPool::getSharedOptimalPool().shutdown();
+// TODO: ideally - free up any deeper dirtied thread stacks.
+// comphelper::ThreadPool::getSharedOptimalPool().shutdown();
 }
 // else for now caches re-fill themselves as/when used.
 }
diff --git a/vcl/source/gdi/impgraph.cxx b/vcl/source/gdi/impgraph.cxx
index 6011e17feb75..3b8029b362de 100644
--- a/vcl/source/gdi/impgraph.cxx
+++ b/vcl/source/gdi/impgraph.cxx
@@ -1424,6 +1424,9 @@ void ImpGraphic::updateFromLoadedGraphic(const 
ImpGraphic* pGraphic)
 
 void ImpGraphic::dumpState(rtl::OStringBuffer )
 {
+if (meType == GraphicType::NONE && mnSizeBytes == 0)
+return; // uninteresting.
+
 rState.append("\n\t");
 
 if (mbSwapOut)
@@ -1433,8 +1436,12 @@ void ImpGraphic::dumpState(rtl::OStringBuffer )
 
 rState.append(static_cast(meType));
 rState.append("\tsize:\t");
-rState.append(static_cast(mnSizeBytes/1024));
-rState.append("\tkb\t");
+rState.append(static_cast(mnSizeBytes));
+rState.append("\t");
+rState.append(static_cast(maSwapInfo.maSizePixel.Width()));
+rState.append("x");
+rState.append(static_cast(maSwapInfo.maSizePixel.Height()));
+rState.append("\t");
 rState.append(static_cast(maExPrefSize.Width()));
 rState.append("x");
 rState.append(static_cast(maExPrefSize.Height()));
diff --git a/vcl/source/graphic/Manager.cxx b/vcl/source/graphic/Manager.cxx
index 80aac3948cc6..d43a617a7272 100644
--- a/vcl/source/graphic/Manager.cxx
+++ b/vcl/source/graphic/Manager.cxx
@@ -92,7 +92,7 @@ void 
Manager::loopGraphicsAndSwapOut(std::unique_lock& rGuard, bool
 continue;
 
 sal_Int64 nCurrentGraphicSize = getGraphicSizeBytes(pEachImpGraphic);
-if (nCurrentGraphicSize > 10)
+if (nCurrentGraphicSize > 10 || bDropAll)
 {
 if (!pEachImpGraphic->mpContext)
 {
@@ -166,7 +166,6 @@ void Manager::dumpState(rtl::OStringBuffer )
 rState.append(static_cast(mnUsedSize/1024));
 rState.append("\tkb");
 
-sal_Int32 i = 0;
 for (ImpGraphic* pEachImpGraphic : m_pImpGraphicList)
 {
 pEachImpGraphic->dumpState(rState);


[Libreoffice-commits] core.git: desktop/qa desktop/source include/LibreOfficeKit include/vcl vcl/inc vcl/source

2023-03-11 Thread Michael Meeks (via logerrit)
 desktop/qa/desktop_lib/test_desktop_lib.cxx |3 +-
 desktop/source/lib/init.cxx |8 ++
 include/LibreOfficeKit/LibreOfficeKit.h |4 +++
 include/LibreOfficeKit/LibreOfficeKit.hxx   |   17 +
 include/vcl/lok.hxx |4 +++
 vcl/inc/graphic/Manager.hxx |8 --
 vcl/inc/impgraph.hxx|2 +
 vcl/inc/svdata.hxx  |7 +
 vcl/source/app/svapp.cxx|   21 
 vcl/source/app/svdata.cxx   |   23 +
 vcl/source/gdi/impgraph.cxx |   25 +++
 vcl/source/graphic/Manager.cxx  |   36 +++-
 12 files changed, 149 insertions(+), 9 deletions(-)

New commits:
commit 4a4602ad7513262a6c0423f17b42791a852b7e23
Author: Michael Meeks 
AuthorDate: Fri Mar 10 10:36:22 2023 +
Commit: Michael Meeks 
CommitDate: Sat Mar 11 21:03:05 2023 +

lok: add trimMemory capability, and expand dumpState to caches.

Being able to trigger some more aggressive memory saving is
useful in for both online and mobile.

Change-Id: I9b91c9fe9eecec06c75112595deac0bfeb94c144
Signed-off-by: Michael Meeks 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148624
Tested-by: Jenkins

diff --git a/desktop/qa/desktop_lib/test_desktop_lib.cxx 
b/desktop/qa/desktop_lib/test_desktop_lib.cxx
index 217b537fa214..a919dbcf4267 100644
--- a/desktop/qa/desktop_lib/test_desktop_lib.cxx
+++ b/desktop/qa/desktop_lib/test_desktop_lib.cxx
@@ -3554,10 +3554,11 @@ void DesktopLOKTest::testABI()
 CPPUNIT_ASSERT_EQUAL(classOffset(14), offsetof(struct 
_LibreOfficeKitClass, setOption));
 CPPUNIT_ASSERT_EQUAL(classOffset(15), offsetof(struct 
_LibreOfficeKitClass, dumpState));
 CPPUNIT_ASSERT_EQUAL(classOffset(16), offsetof(struct 
_LibreOfficeKitClass, extractRequest));
+CPPUNIT_ASSERT_EQUAL(classOffset(17), offsetof(struct 
_LibreOfficeKitClass, trimMemory));
 
 // When extending LibreOfficeKit with a new function pointer,  add new 
assert for the offsetof the
 // new function pointer and bump this assert for the size of the class.
-CPPUNIT_ASSERT_EQUAL(classOffset(17), sizeof(struct _LibreOfficeKitClass));
+CPPUNIT_ASSERT_EQUAL(classOffset(18), sizeof(struct _LibreOfficeKitClass));
 
 CPPUNIT_ASSERT_EQUAL(documentClassOffset(0), offsetof(struct 
_LibreOfficeKitDocumentClass, destroy));
 CPPUNIT_ASSERT_EQUAL(documentClassOffset(1), offsetof(struct 
_LibreOfficeKitDocumentClass, saveAs));
diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx
index cf23f09f1413..9722be530db2 100644
--- a/desktop/source/lib/init.cxx
+++ b/desktop/source/lib/init.cxx
@@ -2523,6 +2523,8 @@ static bool lo_signDocument(LibreOfficeKit* pThis,
 static char* lo_extractRequest(LibreOfficeKit* pThis,
const char* pFilePath);
 
+static void lo_trimMemory(LibreOfficeKit* pThis, int nTarget);
+
 static void lo_runLoop(LibreOfficeKit* pThis,
LibreOfficeKitPollCallback pPollCallback,
LibreOfficeKitWakeCallback pWakeCallback,
@@ -2564,6 +2566,7 @@ LibLibreOffice_Impl::LibLibreOffice_Impl()
 m_pOfficeClass->setOption = lo_setOption;
 m_pOfficeClass->dumpState = lo_dumpState;
 m_pOfficeClass->extractRequest = lo_extractRequest;
+m_pOfficeClass->trimMemory = lo_trimMemory;
 
 gOfficeClass = m_pOfficeClass;
 }
@@ -3142,6 +3145,11 @@ static char* lo_extractRequest(LibreOfficeKit* 
/*pThis*/, const char* pFilePath)
 return convertOUString(result);
 }
 
+static void lo_trimMemory(LibreOfficeKit* /* pThis */, int nTarget)
+{
+vcl::lok::trimMemory(nTarget);
+}
+
 static void lo_registerCallback (LibreOfficeKit* pThis,
  LibreOfficeKitCallback pCallback,
  void* pData)
diff --git a/include/LibreOfficeKit/LibreOfficeKit.h 
b/include/LibreOfficeKit/LibreOfficeKit.h
index 3887d3d3c412..e98ea6f47f42 100644
--- a/include/LibreOfficeKit/LibreOfficeKit.h
+++ b/include/LibreOfficeKit/LibreOfficeKit.h
@@ -127,6 +127,10 @@ struct _LibreOfficeKitClass
  */
 char* (*extractRequest) (LibreOfficeKit* pThis,
const char* pFilePath);
+
+/// @see lok::Office::trimMemory
+/// @since LibreOffice 7.6
+void (*trimMemory) (LibreOfficeKit* pThis, int nTarget);
 };
 
 #define LIBREOFFICEKIT_DOCUMENT_HAS(pDoc,member) 
LIBREOFFICEKIT_HAS_MEMBER(LibreOfficeKitDocumentClass,member,(pDoc)->pClass->nSize)
diff --git a/include/LibreOfficeKit/LibreOfficeKit.hxx 
b/include/LibreOfficeKit/LibreOfficeKit.hxx
index d3c2e5de78aa..bc3bbb98cc10 100644
--- a/include/LibreOfficeKit/LibreOfficeKit.hxx
+++ b/include/LibreOfficeKit/LibreOfficeKit.hxx
@@ -1146,6 +1146,23 @@ public:
 {
 return mpThis->pClass->extractRequest(mpThis, 

[Libreoffice-bugs] [Bug 153828] Lagging with GTK

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153828

Caolán McNamara  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #1 from Caolán McNamara  ---
does 

SAL_DISABLE_CURSOR_INDICATOR=1

make a difference in performance to you? If so, then this might be a duplicate
of bug 148433, which remains a mystery however.

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

[Libreoffice-bugs] [Bug 154120] Need ability to mark characters to be ignored for line height calculation

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154120

--- Comment #4 from Eyal Rozenberg  ---
(In reply to m.a.riosv from comment #1)
> I'm sorry, but I don't like it when every user's idea could become a new
> development.

1. This is a disingenuous way to treat bug reports / feature requests. These
are opened by a single user, but typically regard usage scenarios encountered
by a large number of users.

2. If a user has a good idea, their report should be confirmed. That does not
mean developers are supposed to place it high on their priority list - that's a
different kind of decision.

> Apart from this case seems to be of rather limited use.

That's the only relevant argument. But - I disagree. Why do you believe that
there is limited use for embedding one/a small number of
different-language-group words in a paragraph?

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

[Libreoffice-ux-advise] [Bug 154120] Need ability to mark characters to be ignored for line height calculation

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154120

--- Comment #4 from Eyal Rozenberg  ---
(In reply to m.a.riosv from comment #1)
> I'm sorry, but I don't like it when every user's idea could become a new
> development.

1. This is a disingenuous way to treat bug reports / feature requests. These
are opened by a single user, but typically regard usage scenarios encountered
by a large number of users.

2. If a user has a good idea, their report should be confirmed. That does not
mean developers are supposed to place it high on their priority list - that's a
different kind of decision.

> Apart from this case seems to be of rather limited use.

That's the only relevant argument. But - I disagree. Why do you believe that
there is limited use for embedding one/a small number of
different-language-group words in a paragraph?

-- 
You are receiving this mail because:
You are on the CC list for the bug.

[Libreoffice-bugs] [Bug 99671] [META] Gallery bugs and enhancements

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99671
Bug 99671 depends on bug 132847, which changed state.

Bug 132847 Summary: Not all shapes in gallery shown in Detailed View rendered 
automatically
https://bugs.documentfoundation.org/show_bug.cgi?id=132847

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution|--- |FIXED

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

[Libreoffice-commits] core.git: vcl/source

2023-03-11 Thread Caolán McNamara (via logerrit)
 vcl/source/treelist/svimpbox.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 9dec458e40a8b6a180e5c1c6f93fd4277825b9a2
Author: Caolán McNamara 
AuthorDate: Fri Mar 10 15:53:06 2023 +
Commit: Caolán McNamara 
CommitDate: Sat Mar 11 20:31:23 2023 +

Resolves: tdf#132847 large scrolls that cause page up/down are still 
"scrolls"

and should emit NotifyScrolled even if the scroll is large enough that
the call to internal "scroll" optimization is omitted.

(and like cursor up/down call NotifyScrolled after ShowCursor)

Change-Id: Ie605bde8ce8312b2ff2be9fb471e2f7516b355d9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148649
Tested-by: Jenkins
Reviewed-by: Caolán McNamara 

diff --git a/vcl/source/treelist/svimpbox.cxx b/vcl/source/treelist/svimpbox.cxx
index af9d2b1e1437..beb5435920ec 100644
--- a/vcl/source/treelist/svimpbox.cxx
+++ b/vcl/source/treelist/svimpbox.cxx
@@ -402,10 +402,10 @@ void SvImpLBox::PageDown( sal_uInt16 nDelta )
 m_pView->PaintImmediately();
 m_pView->Scroll( 0, nScroll, aArea, ScrollFlags::NoChildren );
 m_pView->PaintImmediately();
-m_pView->NotifyScrolled();
 }
 
 ShowCursor( true );
+m_pView->NotifyScrolled();
 }
 
 void SvImpLBox::PageUp( sal_uInt16 nDelta )
@@ -437,10 +437,10 @@ void SvImpLBox::PageUp( sal_uInt16 nDelta )
 m_pView->PaintImmediately();
 m_pView->Scroll( 0, nEntryHeight*nRealDelta, aArea, 
ScrollFlags::NoChildren );
 m_pView->PaintImmediately();
-m_pView->NotifyScrolled();
 }
 
 ShowCursor( true );
+m_pView->NotifyScrolled();
 }
 
 void SvImpLBox::KeyUp( bool bPageUp )


[Libreoffice-commits] core.git: sw/inc sw/source

2023-03-11 Thread Mike Kaganski (via logerrit)
 sw/inc/ndindex.hxx  |  215 +++-
 sw/source/core/crsr/swcrsr.cxx  |   10 
 sw/source/core/doc/DocumentContentOperationsManager.cxx |   12 
 sw/source/core/doc/DocumentRedlineManager.cxx   |3 
 sw/source/core/doc/docnew.cxx   |   12 
 sw/source/core/unocore/unotext.cxx  |2 
 sw/source/filter/docx/swdocxreader.cxx  |2 
 sw/source/filter/xml/XMLRedlineImportHelper.cxx |2 
 sw/source/uibase/docvw/UnfloatTableButton.cxx   |2 
 sw/source/uibase/wrtsh/wrtsh1.cxx   |6 
 10 files changed, 75 insertions(+), 191 deletions(-)

New commits:
commit b0b9e755d3b81ad453ebe8f800a1e7c005efc471
Author: Mike Kaganski 
AuthorDate: Sat Mar 11 17:40:37 2023 +0300
Commit: Mike Kaganski 
CommitDate: Sat Mar 11 20:30:10 2023 +

Simplify SwNodeIndex

Change-Id: Ic3bb99d30445c2c355ec8634651bb308d198f714
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148683
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/sw/inc/ndindex.hxx b/sw/inc/ndindex.hxx
index 98c1357821e7..bbe76f1be706 100644
--- a/sw/inc/ndindex.hxx
+++ b/sw/inc/ndindex.hxx
@@ -31,8 +31,9 @@ class SAL_WARN_UNUSED SW_DLLPUBLIC SwNodeIndex final : public 
sw::Ring()
-{
-if( nDiff )
-m_pNode = rIdx.GetNodes()[ rIdx.GetIndex() + nDiff ];
-else
-m_pNode = rIdx.m_pNode;
-RegisterIndex( m_pNode->GetNodes() );
-}
-SwNodeIndex( const SwNodeIndex& rIdx ) : SwNodeIndex(rIdx, 0) {}
+SwNodeIndex( const SwNodeIndex& rIdx, SwNodeOffset nDiff = SwNodeOffset(0) 
)
+: SwNodeIndex( nDiff ? rIdx.GetNodes()[ rIdx.GetIndex() + nDiff ] : 
rIdx.m_pNode ) {}
 
 SwNodeIndex( const SwNode& rNd, sal_Int32 nDiff ) : SwNodeIndex(rNd, 
SwNodeOffset(nDiff)) {}
-explicit SwNodeIndex( const SwNode& rNd, SwNodeOffset nDiff = 
SwNodeOffset(0) )
-{
-if( nDiff )
-m_pNode = rNd.GetNodes()[ rNd.GetIndex() + nDiff ];
-else
-m_pNode = const_cast();
-RegisterIndex( m_pNode->GetNodes() );
-}
+explicit SwNodeIndex( const SwNode& rNd )
+: SwNodeIndex( const_cast() ) {}
+explicit SwNodeIndex( const SwNode& rNd, SwNodeOffset nDiff )
+: SwNodeIndex( nDiff ? *rNd.GetNodes()[ rNd.GetIndex() + nDiff ] : rNd 
) {}
 
-virtual  ~SwNodeIndex() override
-{ DeRegisterIndex( m_pNode->GetNodes() ); }
+virtual ~SwNodeIndex() override { DeRegisterIndex(); }
 
-inline SwNodeOffset operator++();
-inline SwNodeOffset operator--();
-inline SwNodeOffset operator++(int);
-inline SwNodeOffset operator--(int);
+SwNodeIndex& operator++() { return operator+=(SwNodeOffset(1)); }
+SwNodeIndex& operator--() { return operator-=(SwNodeOffset(1)); }
 
-inline SwNodeOffset operator+=( SwNodeOffset );
-inline SwNodeOffset operator-=( SwNodeOffset );
+SwNodeIndex& operator+=( SwNodeOffset nOffset ) { return 
operator=(GetIndex() + nOffset); }
+SwNodeIndex& operator-=( SwNodeOffset nOffset ) { return 
operator=(GetIndex() - nOffset); }
 
-inline bool operator< ( const SwNodeIndex& ) const;
-inline bool operator<=( const SwNodeIndex& ) const;
-inline bool operator> ( const SwNodeIndex& ) const;
-inline bool operator>=( const SwNodeIndex& ) const;
-inline bool operator==( const SwNodeIndex& ) const;
-inline bool operator!=( const SwNodeIndex& ) const;
+bool operator<( const SwNodeIndex& rIndex ) const { return 
operator<(rIndex.GetNode()); }
+bool operator<=( const SwNodeIndex& rIndex ) const { return 
operator<=(rIndex.GetNode()); }
+bool operator>( const SwNodeIndex& rIndex ) const { return 
operator>(rIndex.GetNode()); }
+bool operator>=( const SwNodeIndex& rIndex ) const { return 
operator>=(rIndex.GetNode()); }
+bool operator==( const SwNodeIndex& rIndex ) const { return 
operator==(rIndex.GetNode()); }
+bool operator!=( const SwNodeIndex& rIndex ) const { return 
operator!=(rIndex.GetNode()); }
 
-inline bool operator< ( SwNodeOffset ) const;
-inline bool operator<=( SwNodeOffset ) const;
-inline bool operator> ( SwNodeOffset ) const;
-inline bool operator>=( SwNodeOffset ) const;
-inline bool operator==( SwNodeOffset ) const;
-inline bool operator!=( SwNodeOffset ) const;
+bool operator<( SwNodeOffset nOther ) const { return GetIndex() < nOther; }
+bool operator<=( SwNodeOffset nOther ) const { return GetIndex() <= 
nOther; }
+bool operator>( SwNodeOffset nOther ) const { return GetIndex() > nOther; }
+bool operator>=( SwNodeOffset nOther ) const { return GetIndex() >= 
nOther; }
+bool operator==( SwNodeOffset nOther ) const { return GetIndex() == 
nOther; }
+bool operator!=( SwNodeOffset nOther ) const { return GetIndex() != 
nOther; }
 
 bool operator<( const SwNode& rNd ) const { return 

[Libreoffice-bugs] [Bug 149570] Can't undo removing columns / rows until leaving the table or adding to history stack (steps in comment 4)

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149570

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 CC||caol...@redhat.com
Version|7.4.5.1 release |7.4.0.0 alpha1+
   Keywords|bibisectRequest |bibisected, bisected

--- Comment #5 from Stéphane Guillou (stragu) 
 ---
Bibisected with linux-64-7.4 repo to first bad commit
6510e2270f35e0faffcb66742917c9674de5f5f3 which points to core commit:

commit  ae0e7e3918284c31a91acca0f733919926ae3a62
author  Caolán McNamara Thu Apr 14 11:20:23 2022 +0100
committer   Caolán McNamara Thu Apr 14 16:10:20
2022 +0200
treec23d0a76fdf2fdaa73b7c352428d7dd6deb723bb
parent  590323f4235e5ec3de2dc6dee28a4f03288ac6d7
tdf#141812 keep focus in an impress table cell when row/col deleted
Change-Id: I3b396ba92039bad657ca159002598a271b68a79d

First tag is 7.4.0.0.alpha1

Caolán, can you please have a look?

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

[Libreoffice-commits] core.git: Branch 'libreoffice-7-5' - sysui/desktop

2023-03-11 Thread Galdam (via logerrit)
 sysui/desktop/icons/base_app.ico|binary
 sysui/desktop/icons/calc_app.ico|binary
 sysui/desktop/icons/database.ico|binary
 sysui/desktop/icons/draw_app.ico|binary
 sysui/desktop/icons/drawing-template.ico|binary
 sysui/desktop/icons/drawing.ico |binary
 sysui/desktop/icons/formula.ico |binary
 sysui/desktop/icons/impress_app.ico |binary
 sysui/desktop/icons/master-document.ico |binary
 sysui/desktop/icons/math_app.ico|binary
 sysui/desktop/icons/oasis-database.ico  |binary
 sysui/desktop/icons/oasis-drawing-template.ico  |binary
 sysui/desktop/icons/oasis-drawing.ico   |binary
 sysui/desktop/icons/oasis-formula.ico   |binary
 sysui/desktop/icons/oasis-master-document.ico   |binary
 sysui/desktop/icons/oasis-presentation-template.ico |binary
 sysui/desktop/icons/oasis-presentation.ico  |binary
 sysui/desktop/icons/oasis-spreadsheet-template.ico  |binary
 sysui/desktop/icons/oasis-spreadsheet.ico   |binary
 sysui/desktop/icons/oasis-text-template.ico |binary
 sysui/desktop/icons/oasis-text.ico  |binary
 sysui/desktop/icons/oasis-web-template.ico  |binary
 sysui/desktop/icons/oxt-extension.ico   |binary
 sysui/desktop/icons/presentation-template.ico   |binary
 sysui/desktop/icons/presentation.ico|binary
 sysui/desktop/icons/soffice.ico |binary
 sysui/desktop/icons/spreadsheet-template.ico|binary
 sysui/desktop/icons/spreadsheet.ico |binary
 sysui/desktop/icons/text-template.ico   |binary
 sysui/desktop/icons/text.ico|binary
 sysui/desktop/icons/writer_app.ico  |binary
 31 files changed

New commits:
commit 940e0bd5161602572c8860fb59b157d5545a9c07
Author: Galdam 
AuthorDate: Wed Mar 8 19:12:21 2023 +0200
Commit: Adolfo Jayme Barrientos 
CommitDate: Sat Mar 11 19:56:29 2023 +

tdf#152598 Update .ico files

Added more images inside the app/mimetype .ico files to avoid bluriness in 
Windows

Change-Id: Ie3ccc6f26ab21b2261a2964a70821473c413d86c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148485
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos 
(cherry picked from commit d147ca1543ef91c54bee203cf71745b216e3b257)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148701

diff --git a/sysui/desktop/icons/base_app.ico b/sysui/desktop/icons/base_app.ico
index 5554724ecd5a..002eed55d9ba 100644
Binary files a/sysui/desktop/icons/base_app.ico and 
b/sysui/desktop/icons/base_app.ico differ
diff --git a/sysui/desktop/icons/calc_app.ico b/sysui/desktop/icons/calc_app.ico
index ea97e4b59d40..19606e139034 100644
Binary files a/sysui/desktop/icons/calc_app.ico and 
b/sysui/desktop/icons/calc_app.ico differ
diff --git a/sysui/desktop/icons/database.ico b/sysui/desktop/icons/database.ico
index 7a31f4d6e2d7..20e457feaf92 100644
Binary files a/sysui/desktop/icons/database.ico and 
b/sysui/desktop/icons/database.ico differ
diff --git a/sysui/desktop/icons/draw_app.ico b/sysui/desktop/icons/draw_app.ico
index 9ad306c6130e..4072713c290a 100644
Binary files a/sysui/desktop/icons/draw_app.ico and 
b/sysui/desktop/icons/draw_app.ico differ
diff --git a/sysui/desktop/icons/drawing-template.ico 
b/sysui/desktop/icons/drawing-template.ico
index 3bdc82f47222..a5b75ce1fde6 100644
Binary files a/sysui/desktop/icons/drawing-template.ico and 
b/sysui/desktop/icons/drawing-template.ico differ
diff --git a/sysui/desktop/icons/drawing.ico b/sysui/desktop/icons/drawing.ico
index 3bdc82f47222..a5b75ce1fde6 100644
Binary files a/sysui/desktop/icons/drawing.ico and 
b/sysui/desktop/icons/drawing.ico differ
diff --git a/sysui/desktop/icons/formula.ico b/sysui/desktop/icons/formula.ico
index 7652cfbbc892..c9f0f934c1b8 100644
Binary files a/sysui/desktop/icons/formula.ico and 
b/sysui/desktop/icons/formula.ico differ
diff --git a/sysui/desktop/icons/impress_app.ico 
b/sysui/desktop/icons/impress_app.ico
index 6b63168c5a9a..0d9455f5143a 100644
Binary files a/sysui/desktop/icons/impress_app.ico and 
b/sysui/desktop/icons/impress_app.ico differ
diff --git a/sysui/desktop/icons/master-document.ico 
b/sysui/desktop/icons/master-document.ico
index f1be15370738..49e6f9330699 100644
Binary files a/sysui/desktop/icons/master-document.ico and 
b/sysui/desktop/icons/master-document.ico differ
diff --git a/sysui/desktop/icons/math_app.ico b/sysui/desktop/icons/math_app.ico
index fd011f24bb52..dd5988edc611 100644
Binary files a/sysui/desktop/icons/math_app.ico and 
b/sysui/desktop/icons/math_app.ico differ
diff --git a/sysui/desktop/icons/oasis-database.ico 
b/sysui/desktop/icons/oasis-database.ico
index 7a31f4d6e2d7..20e457feaf92 100644
Binary files a/sysui/desktop/icons/oasis-database.ico and 

[Libreoffice-bugs] [Bug 145565] (Enhancement) In Writer, make it easier to align forms to text

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145565

MarjaE  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #6 from MarjaE  ---
1. Open the file.

2. Go to Form > Design Mode.

3. Select a field.

4. Copy it and paste it. If you paste it to an empty line, it will cause the
next row to jump up. If you paste it alongside an existing row, it won't have
much effect alongside the larger text, but it will increase line spacing
alongside the smaller text.

5. Try to resize it to fit the smaller text. It won't.

6. Try to drag-and-drop to compare one form field to another. It won't, and the
whole page will be thrown into disarray. Trying to drag it back into place can
make it worse.

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

[Libreoffice-bugs] [Bug 154137] Two new functions please: NOW.NV & TODAY.NV.

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154137

--- Comment #1 from ady  ---
The following tip might help, but it may also need some adjustment.

Introducing a static value for DATE and/or TIME can (potentially) be achieved
by adequate keyboard shortcuts (when using the classic English USA QUERTY
keyboard layout).

Insert current date (static): [CTRL]+[;]
Insert current time (static, i.e. timestamp): [CTRL]+[SHIFT][;]

You can also:
1. Enter edit mode (F2)
2. [CTRL]+[;]
3. [SPACE] bar (for example)
4. [CTRL]+[SHIFT][;]
5. [ENTER]

Introducing any of the above in one cell allows you to use it "statically",
i.e. it will not get updated unless you change it manually.

Then you can use that cell in other formulas.

These keyboard shortcuts might not work with other keyboard layouts (bug?), but
you can go to menu Tools > Customize > Keyboard and adapt it to your needs.

Independently of the requested functions, the correct functionality of the
mentioned keyboard shortcuts (or alternative ones) for non-QUERTY(USA) layouts
/ languages should be checked and corrected if necessary (because it does not
always work as users expect).

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

[Libreoffice-bugs] [Bug 154136] In Help I found Command+Shift+; to have a timestamp in a Calc cell, but it is doing nothing.

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154136

--- Comment #6 from Alexander Van den Panhuysen 
 ---
Shortcut Command+; to become a Datestamp, is doing nothing either.

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

[Libreoffice-bugs] [Bug 154120] Need ability to mark characters to be ignored for line height calculation

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154120

--- Comment #3 from V Stuart Foote  ---
(In reply to V Stuart Foote from comment #2)
> Can see the utility to this, but not clear ODF can accommodate. 
> 
> We're already wrestling with issues like bug 71080 and bug 136448 for Drop
> caps handling, seems excluding characters/word text runs within a paragraphs
> line height metrics would require similar.
> 
> Kind of complex though, as not just the line height but also the text width
> for the span would need to be tracked to avoid overrun and place correctly.
> 
> We currently can place draw shape text boxes to provide this kind of layout
> (wrap and anchor). But in-line as "ignored" paragraph text could be of
> use--think writing mixed polyglot content in line.

s/71080/bug 70180/

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

[Libreoffice-ux-advise] [Bug 154120] Need ability to mark characters to be ignored for line height calculation

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154120

--- Comment #3 from V Stuart Foote  ---
(In reply to V Stuart Foote from comment #2)
> Can see the utility to this, but not clear ODF can accommodate. 
> 
> We're already wrestling with issues like bug 71080 and bug 136448 for Drop
> caps handling, seems excluding characters/word text runs within a paragraphs
> line height metrics would require similar.
> 
> Kind of complex though, as not just the line height but also the text width
> for the span would need to be tracked to avoid overrun and place correctly.
> 
> We currently can place draw shape text boxes to provide this kind of layout
> (wrap and anchor). But in-line as "ignored" paragraph text could be of
> use--think writing mixed polyglot content in line.

s/71080/bug 70180/

-- 
You are receiving this mail because:
You are on the CC list for the bug.

[Libreoffice-commits] core.git: icon-themes/breeze icon-themes/breeze_dark icon-themes/breeze_dark_svg icon-themes/breeze_svg icon-themes/elementary icon-themes/elementary_svg icon-themes/karasa_jaga

2023-03-11 Thread Rizal Muttaqin (via logerrit)
 icon-themes/breeze/res/tipoftheday.png|binary
 icon-themes/breeze/res/tipoftheday_c.png  |binary
 icon-themes/breeze/res/tipoftheday_d.png  |binary
 icon-themes/breeze/res/tipoftheday_i.png  |binary
 icon-themes/breeze/res/tipoftheday_w.png  |binary
 icon-themes/breeze_dark/res/tipoftheday.png   |binary
 icon-themes/breeze_dark/res/tipoftheday_c.png |binary
 icon-themes/breeze_dark/res/tipoftheday_d.png |binary
 icon-themes/breeze_dark/res/tipoftheday_i.png |binary
 icon-themes/breeze_dark/res/tipoftheday_w.png |binary
 icon-themes/breeze_dark_svg/res/tipoftheday.svg   |1 +
 icon-themes/breeze_dark_svg/res/tipoftheday_c.svg |1 +
 icon-themes/breeze_dark_svg/res/tipoftheday_d.svg |1 +
 icon-themes/breeze_dark_svg/res/tipoftheday_i.svg |1 +
 icon-themes/breeze_dark_svg/res/tipoftheday_w.svg |1 +
 icon-themes/breeze_svg/res/tipoftheday.svg|1 +
 icon-themes/breeze_svg/res/tipoftheday_c.svg  |1 +
 icon-themes/breeze_svg/res/tipoftheday_d.svg  |1 +
 icon-themes/breeze_svg/res/tipoftheday_i.svg  |1 +
 icon-themes/breeze_svg/res/tipoftheday_w.svg  |1 +
 icon-themes/elementary/res/tipoftheday.png|binary
 icon-themes/elementary/res/tipoftheday_c.png  |binary
 icon-themes/elementary/res/tipoftheday_d.png  |binary
 icon-themes/elementary/res/tipoftheday_i.png  |binary
 icon-themes/elementary/res/tipoftheday_w.png  |binary
 icon-themes/elementary_svg/res/tipoftheday.svg|1 +
 icon-themes/elementary_svg/res/tipoftheday_c.svg  |1 +
 icon-themes/elementary_svg/res/tipoftheday_d.svg  |1 +
 icon-themes/elementary_svg/res/tipoftheday_i.svg  |1 +
 icon-themes/elementary_svg/res/tipoftheday_w.svg  |1 +
 icon-themes/karasa_jaga/res/tipoftheday.png   |binary
 icon-themes/karasa_jaga/res/tipoftheday_c.png |binary
 icon-themes/karasa_jaga/res/tipoftheday_d.png |binary
 icon-themes/karasa_jaga/res/tipoftheday_i.png |binary
 icon-themes/karasa_jaga/res/tipoftheday_w.png |binary
 icon-themes/karasa_jaga_svg/res/tipoftheday.svg   |1 +
 icon-themes/karasa_jaga_svg/res/tipoftheday_c.svg |1 +
 icon-themes/karasa_jaga_svg/res/tipoftheday_d.svg |1 +
 icon-themes/karasa_jaga_svg/res/tipoftheday_i.svg |1 +
 icon-themes/karasa_jaga_svg/res/tipoftheday_w.svg |1 +
 icon-themes/sifr/res/tipoftheday.png  |binary
 icon-themes/sifr/res/tipoftheday_c.png|binary
 icon-themes/sifr/res/tipoftheday_d.png|binary
 icon-themes/sifr/res/tipoftheday_i.png|binary
 icon-themes/sifr/res/tipoftheday_w.png|binary
 icon-themes/sifr_dark/res/tipoftheday.png |binary
 icon-themes/sifr_dark/res/tipoftheday_c.png   |binary
 icon-themes/sifr_dark/res/tipoftheday_d.png   |binary
 icon-themes/sifr_dark/res/tipoftheday_i.png   |binary
 icon-themes/sifr_dark/res/tipoftheday_w.png   |binary
 icon-themes/sifr_dark_svg/res/tipoftheday.svg |1 +
 icon-themes/sifr_dark_svg/res/tipoftheday_c.svg   |1 +
 icon-themes/sifr_dark_svg/res/tipoftheday_d.svg   |1 +
 icon-themes/sifr_dark_svg/res/tipoftheday_i.svg   |1 +
 icon-themes/sifr_dark_svg/res/tipoftheday_w.svg   |1 +
 icon-themes/sifr_svg/res/tipoftheday.svg  |1 +
 icon-themes/sifr_svg/res/tipoftheday_c.svg|1 +
 icon-themes/sifr_svg/res/tipoftheday_d.svg|1 +
 icon-themes/sifr_svg/res/tipoftheday_i.svg|1 +
 icon-themes/sifr_svg/res/tipoftheday_w.svg|1 +
 60 files changed, 30 insertions(+)

New commits:
commit 1bd9f9b57ba4f40376ee9170e14ef2c31295c76e
Author: Rizal Muttaqin 
AuthorDate: Sat Mar 11 15:57:10 2023 +0700
Commit: Adolfo Jayme Barrientos 
CommitDate: Sat Mar 11 18:58:23 2023 +

tdf#154106 Breeze, elementary, KJ, Sifr: Add Bulb assets for ToTD

Change-Id: I218d33b4c84b846e3c4c3d95e56662a019f70720
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148681
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/icon-themes/breeze/res/tipoftheday.png 
b/icon-themes/breeze/res/tipoftheday.png
new file mode 100644
index ..5378ca75db7e
Binary files /dev/null and b/icon-themes/breeze/res/tipoftheday.png differ
diff --git a/icon-themes/breeze/res/tipoftheday_c.png 
b/icon-themes/breeze/res/tipoftheday_c.png
new file mode 100644
index ..b051b3d13e06
Binary files /dev/null and b/icon-themes/breeze/res/tipoftheday_c.png differ
diff --git a/icon-themes/breeze/res/tipoftheday_d.png 
b/icon-themes/breeze/res/tipoftheday_d.png
new file mode 100644
index ..6e973f1fc09d
Binary files /dev/null and b/icon-themes/breeze/res/tipoftheday_d.png differ
diff --git a/icon-themes/breeze/res/tipoftheday_i.png 
b/icon-themes/breeze/res/tipoftheday_i.png
new file mode 100644
index ..9b86140ff904
Binary files /dev/null and b/icon-themes/breeze/res/tipoftheday_i.png differ
diff 

[Libreoffice-bugs] [Bug 154135] Librewriter autocomplete no long working

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154135

V Stuart Foote  changed:

   What|Removed |Added

 CC||vsfo...@libreoffice.org
 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #1 from V Stuart Foote  ---
Have you checked enabled Tools -> AutoCorrect -> AutoCorrect Options -> Word
Completion 'Enable word completion'?

It is disabled by default.

When checked enabled entries on the collected words will autocomplete.
Checkboxes will also control collection and retention of "collected" words per
document as saved to user profile.

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

[Libreoffice-bugs] [Bug 154126] Writer: Drawing object not positioned at very bottom of paragraph

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154126

Telesto  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 154128] Writer: Drawing object becomes invisible when flushed to next page

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154128

Telesto  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 154128] Writer: Drawing object becomes invisible when flushed to next page

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154128

Telesto  changed:

   What|Removed |Added

   Keywords||bibisectRequest, regression
Version|7.4.5.1 release |6.0.0.3 release

--- Comment #2 from Telesto  ---
Version: 7.0.7.0.0+ (x64)
Build ID: 626ea4e62a3e5005fe9825923a1c0c5bdb61cc08
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: default; VCL: win
Locale: nl-NL (nl_NL); UI: en-US
Calc: CL

Version: 6.2.9.0.0+ (x86)
Build ID: 5f01fe15eb2661f1f9ce12d1d99dc2a705b462ee
CPU threads: 4; OS: Windows 6.3; UI render: default; VCL: win; 
Locale: nl-NL (nl_NL); UI-Language: en-US
Calc: CL

and in
Version: 6.0.0.0.alpha0+
Build ID: 9127d1a89cbfba89eb9df6755ea7b9e161cfc67a
CPU threads: 4; OS: Windows 6.3; UI render: default; 
Locale: nl-NL (nl_NL); Calc: CL

fine with
Version: 5.2.0.0.alpha1+
Build ID: 5b168b3fa568e48e795234dc5fa454bf24c9805e
CPU Threads: 4; OS Version: Windows 6.29; UI Render: default; 
Locale: nl-NL (nl_NL)

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

[Libreoffice-ux-advise] [Bug 154120] Need ability to mark characters to be ignored for line height calculation

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154120

V Stuart Foote  changed:

   What|Removed |Added

   Keywords||needsUXEval
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||rb.hensc...@t-online.de,
   ||vsfo...@libreoffice.org

--- Comment #2 from V Stuart Foote  ---
Can see the utility to this, but not clear ODF can accommodate. 

We're already wrestling with issues like bug 71080 and bug 136448 for Drop caps
handling, seems excluding characters/word text runs within a paragraphs line
height metrics would require similar.

Kind of complex though, as not just the line height but also the text width for
the span would need to be tracked to avoid overrun and place correctly.

We currently can place draw shape text boxes to provide this kind of layout
(wrap and anchor). But in-line as "ignored" paragraph text could be of
use--think writing mixed polyglot content in line.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

[Libreoffice-bugs] [Bug 154120] Need ability to mark characters to be ignored for line height calculation

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154120

V Stuart Foote  changed:

   What|Removed |Added

   Keywords||needsUXEval
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||rb.hensc...@t-online.de,
   ||vsfo...@libreoffice.org

--- Comment #2 from V Stuart Foote  ---
Can see the utility to this, but not clear ODF can accommodate. 

We're already wrestling with issues like bug 71080 and bug 136448 for Drop caps
handling, seems excluding characters/word text runs within a paragraphs line
height metrics would require similar.

Kind of complex though, as not just the line height but also the text width for
the span would need to be tracked to avoid overrun and place correctly.

We currently can place draw shape text boxes to provide this kind of layout
(wrap and anchor). But in-line as "ignored" paragraph text could be of
use--think writing mixed polyglot content in line.

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

[Libreoffice-bugs] [Bug 107243] [META] Locale keyboard shortcut issues

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107243

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||154136


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=154136
[Bug 154136] In Help I found Command+Shift+; to have a timestamp in a Calc
cell, but it is doing nothing.
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 126888] Ctrl+Shift+; shortcut to insert current time stopped working

2023-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126888

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

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

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

  1   2   3   >