]> git.lyx.org Git - lyx.git/log
lyx.git
11 months agoFix thinspace search regex
Juergen Spitzmueller [Tue, 18 Jul 2023 05:28:18 +0000 (07:28 +0200)]
Fix thinspace search regex

11 months agoFix display of comment char in "lyxlex" debug channel
Jean-Marc Lasgouttes [Sun, 16 Jul 2023 18:15:48 +0000 (20:15 +0200)]
Fix display of comment char in "lyxlex" debug channel

11 months agoTHINSPACE is nonbreakable (i.e., 0x202f, not 0x2009)
Juergen Spitzmueller [Mon, 17 Jul 2023 15:14:50 +0000 (17:14 +0200)]
THINSPACE is nonbreakable (i.e., 0x202f, not 0x2009)

11 months agoSupport protected and thin space in simple search (#12836)
Juergen Spitzmueller [Mon, 17 Jul 2023 14:58:04 +0000 (16:58 +0200)]
Support protected and thin space in simple search (#12836)

11 months agoStyle
Juergen Spitzmueller [Mon, 17 Jul 2023 14:55:47 +0000 (16:55 +0200)]
Style

11 months agoDo not throw away runparams settings of InsetText in InsetFoot::latex
Juergen Spitzmueller [Mon, 17 Jul 2023 11:18:56 +0000 (13:18 +0200)]
Do not throw away runparams settings of InsetText in InsetFoot::latex

This amends 243b0ef90c09d5

11 months agoWhen breaking a paragraph, do not reset depth
Jean-Marc Lasgouttes [Sun, 26 Mar 2023 18:28:00 +0000 (20:28 +0200)]
When breaking a paragraph, do not reset depth

Remove some logic that would reset depth when editing non-environment
stuff (e.g. Standard layout) at non-zero depth. The current way of
decreasing depth is to use paragraph-break in an empty paragraph.

See discussion in ticket #2445 for why this code happened.

Fixes bug #12750.

11 months ago#12818 amend last change b924db72c5 - use c++ 11 compiler compatible code
Stephan Witt [Sun, 16 Jul 2023 15:11:38 +0000 (17:11 +0200)]
#12818 amend last change b924db72c5 - use c++ 11 compiler compatible code

11 months ago#12818 correct evaluation of message box result info
Stephan Witt [Sun, 16 Jul 2023 14:48:49 +0000 (16:48 +0200)]
#12818 correct evaluation of message box result info

The help page of int QMessageBox::exec() (​https://doc.qt.io/qt-6/qmessagebox.html#exec) says:
When using a QMessageBox with standard buttons, this function returns a StandardButton value indicating the standard button that was clicked.
When using QMessageBox with custom buttons, this function returns an opaque value; use clickedButton() to determine which button was clicked.

11 months agoMove comment to where it belongs
Juergen Spitzmueller [Sun, 16 Jul 2023 14:46:02 +0000 (16:46 +0200)]
Move comment to where it belongs

11 months agoIf language needs to be reset at the end of footnotes or floats
Juergen Spitzmueller [Sun, 16 Jul 2023 14:31:31 +0000 (16:31 +0200)]
If language needs to be reset at the end of footnotes or floats

then do reset it only after footnotes or floats. \selectlanguage at
the end of environments might produce spurious vertical space
(see https://marc.info/?l=lyx-devel&m=168872369617866)

11 months agoCache the value of FontMetrics::xHeight()
Jean-Marc Lasgouttes [Sat, 15 Jul 2023 17:39:14 +0000 (19:39 +0200)]
Cache the value of FontMetrics::xHeight()

This value is computed for the metrics of *every* Mathdata and hotspot
says that it counts for 9% of total on math-heavy "branch-test.lyx"
file. I am not sure that real world agrees with that, but profiling
shows that Qt itself does not cache the value.

Part of reinvestigation of #12297.

11 months agoCleanup and (maybe) speedup InsetMathChar::mathClass
Jean-Marc Lasgouttes [Sat, 15 Jul 2023 21:26:31 +0000 (23:26 +0200)]
Cleanup and (maybe) speedup InsetMathChar::mathClass

Profiling with hotspot show that it counts for more than it should and
indeed using support::contains is a overkill here. I like the new code
better anyway.

I would be surprised to see that it makes a big difference, though.

11 months agoGive error if a required Qt6 module is missing
Enrico Forestieri [Sat, 15 Jul 2023 13:25:33 +0000 (15:25 +0200)]
Give error if a required Qt6 module is missing

Configure would not stop in such cases and a subsequent make would fail.

11 months agoadd comment
Jean-Marc Lasgouttes [Sat, 15 Jul 2023 13:20:28 +0000 (15:20 +0200)]
add comment

11 months agoDon't add LabelString for Manual LabelType
Daniel Ramoeller [Thu, 20 Apr 2023 21:49:46 +0000 (23:49 +0200)]
Don't add LabelString for Manual LabelType

Fix for bug  #12753

11 months agoFix display of a math hull inset in a tight inset
Jean-Marc Lasgouttes [Fri, 14 Jul 2023 00:13:18 +0000 (02:13 +0200)]
Fix display of a math hull inset in a tight inset

This is a kind of hack. This allows InsetMathHull to state that it
needs some elbow room beyond its width, in order to fit the numbering
and/or the left margin (with left alignment), which are outside of the
inset itself.

To this end, InsetMathHull::metrics() sets a value in
MetricsInfo::extrawidth and this value is recorded later in the
corresponding row element's `extra' field.

The code could be reorganized to be simpler, in particular by
computing metrics in tokenizeRow, or after tokenizeRow. However the
choice here is to produce a simple patch, fit for 2.4.0.

Fixes bug #12320.

11 months agoAdd 'tab-group-next' to emacs.bind
Kornel Benko [Fri, 7 Jul 2023 08:51:51 +0000 (10:51 +0200)]
Add 'tab-group-next' to emacs.bind

Theis resembles the shortcut "other-window" in emacs.
(Suggestion comes from Christopher Menzel)

11 months agoAdd optional parameter 'local' to outline-in/out
Jean-Marc Lasgouttes [Wed, 28 Jun 2023 14:05:21 +0000 (16:05 +0200)]
Add optional parameter 'local' to outline-in/out

When this parameter is given, only the current paragraph is affected
by the section promoting/demoting.

Note that the new argument is not used yet.

Update release notes and LFUNS documentation.

Part of ticket #12417.

11 months agoOutline: swap order of up and down arrows
Jean-Marc Lasgouttes [Thu, 6 Jul 2023 15:27:14 +0000 (17:27 +0200)]
Outline: swap order of up and down arrows

The order is more natural now.

See discussion in #12809.

11 months agoFix cursor font after collapsing inset (#12830)
Scott Kostyshak [Thu, 6 Jul 2023 12:40:12 +0000 (08:40 -0400)]
Fix cursor font after collapsing inset (#12830)

If the cursor is in an inset, and it is closed (e.g., with ctrl + i,
or inset-toggle), the cursor is moved outside of the inset, so the
font must be reset.

11 months agoHide multi-keystroke accelerators in Mac menu (bug 12693).
Pavel Sanda [Wed, 5 Jul 2023 18:45:26 +0000 (20:45 +0200)]
Hide multi-keystroke accelerators in Mac menu (bug 12693).

Patch from Juergen.

11 months agoFix combined zoom widget on windows (bug #12803).
Daniel Ramoeller [Sun, 11 Jun 2023 08:26:35 +0000 (10:26 +0200)]
Fix combined zoom widget on windows (bug #12803).

11 months agolyx2lyx: skip mathed in convert_hebrew_parentheses (#12824)
Juergen Spitzmueller [Tue, 4 Jul 2023 05:37:06 +0000 (07:37 +0200)]
lyx2lyx: skip mathed in convert_hebrew_parentheses (#12824)

Those have not been swapped in Hebrew.

11 months agoAdd bug reference.
Pavel Sanda [Mon, 3 Jul 2023 21:54:34 +0000 (23:54 +0200)]
Add bug reference.

11 months agoFix inset context menu offset with keyboard (#12811)
Juergen Spitzmueller [Mon, 3 Jul 2023 14:28:38 +0000 (16:28 +0200)]
Fix inset context menu offset with keyboard (#12811)

12 months agoAvoid unnecessary cprotect loading (#12826)
Juergen Spitzmueller [Fri, 30 Jun 2023 14:31:13 +0000 (16:31 +0200)]
Avoid unnecessary cprotect loading (#12826)

12 months agoStyle and whitespace
Scott Kostyshak [Thu, 29 Jun 2023 09:31:41 +0000 (05:31 -0400)]
Style and whitespace

12 months agoHonor pending spaces in InsetMathChar::write
Enrico Forestieri [Wed, 28 Jun 2023 19:17:26 +0000 (21:17 +0200)]
Honor pending spaces in InsetMathChar::write

The InsetMathChar::write() method directly accesses the otexrowstream
underlying the TeXMathStream class for writing a character, thus
shortcircuiting the mechanism that allows to separate a macro from the
following material. It has to do so because directly writing a char_type
would cause printing its numerical value instead of the corresponding
unicode character in systems where char_type is typedef'd to uint32_t.

This problem has been uncovered by [7441172d/lyxgit] because each atom
of a mathed cell was being separately written to the output instead of
using the lyx::write() method in MathExtern.cpp that simply converts
everything to a docstring. As InsetMathChar::write() is the only method
bypassing the TeXMathStream machanism, it is simpler teaching it to
honor the pending space instead of modifying the code in InsetMathColor.

This commit amends 7441172d.

12 months agoPrevent par break caused by \egroup (#12821)
Jürgen Spitzmüller [Wed, 28 Jun 2023 12:46:46 +0000 (14:46 +0200)]
Prevent par break caused by \egroup (#12821)

12 months agoMake outline function work in an inset
Jean-Marc Lasgouttes [Wed, 21 Jun 2023 22:21:54 +0000 (00:21 +0200)]
Make outline function work in an inset

The function outline is modified to operate only in the inset that
contains the cursor. This means that the function can be enabled in
insets (this had been forbidden to fix #5004).

Of course, there may be cases where the user expects something to
happen outside of the inset. I am sorry to announce that this is not
going to happen ;)

Fixes bug #12809.

12 months ago Update fr.po
jpc [Sun, 25 Jun 2023 15:55:16 +0000 (17:55 +0200)]
    Update fr.po

12 months agoUpdate it.po
Enrico Forestieri [Sun, 25 Jun 2023 10:23:03 +0000 (12:23 +0200)]
Update it.po

12 months agoUpdate tex2lyx tests
Scott Kostyshak [Wed, 21 Jun 2023 18:38:23 +0000 (14:38 -0400)]
Update tex2lyx tests

Update the test files after the last format change (c3f98d1f).

12 months agoImprove label font computation in insets
Jean-Marc Lasgouttes [Wed, 21 Jun 2023 14:58:19 +0000 (16:58 +0200)]
Improve label font computation in insets

This patch reuses the code of TextMetrics::displayFont() that handles
the label part of LABEL_MANUAL paragraphs to create a new
labelDisplayFont() method usable for things like Itemize labels.

To this end, and new magic value is used as position to force the
label case in displayFont(). The code is also factored a bit and
cleaned up.

Fixes bug #12810.

12 months agoShow full inset context-menu when clicking on text part of collapsible (#10370)
Juergen Spitzmueller [Tue, 20 Jun 2023 09:00:13 +0000 (11:00 +0200)]
Show full inset context-menu when clicking on text part of collapsible (#10370)

12 months agotypo
Juergen Spitzmueller [Tue, 20 Jun 2023 09:00:05 +0000 (11:00 +0200)]
typo

12 months agoComments cleanup
Jean-Marc Lasgouttes [Mon, 19 Jun 2023 22:06:57 +0000 (00:06 +0200)]
Comments cleanup

12 months agoAdd "override" to fix warning
Scott Kostyshak [Mon, 19 Jun 2023 18:46:05 +0000 (14:46 -0400)]
Add "override" to fix warning

Otherwise we get the following warning:

src/frontends/qt/InsertTableWidget.h:44:7: error: 'hideEvent' overrides a member function but is not marked 'override' [-Werror,-Winconsistent-missing-override]
        void hideEvent(QHideEvent * event);
             ^

Amends ca5a75b2.

12 months agoAmend b135c965
Enrico Forestieri [Mon, 19 Jun 2023 16:30:23 +0000 (18:30 +0200)]
Amend b135c965

A macro with @ in its name must be used after \makeatletter

12 months agoUse \ifthenelse instead of relying on TeX primitives
Enrico Forestieri [Mon, 19 Jun 2023 16:17:31 +0000 (18:17 +0200)]
Use \ifthenelse instead of relying on TeX primitives

This fixes the issue reported here:
https://www.mail-archive.com/lyx-users@lists.lyx.org/msg115156.html

12 months agoImproved LYX_BUILD_TYPE detection for cmake - case insensitive AC_INIT processing
Stephan Witt [Mon, 19 Jun 2023 06:00:08 +0000 (08:00 +0200)]
Improved LYX_BUILD_TYPE detection for cmake - case insensitive AC_INIT processing

12 months agoDisable LFUN_INDEX_TAG_ALL if there is noting to tag (#12812)
Juergen Spitzmueller [Sun, 18 Jun 2023 10:45:25 +0000 (12:45 +0200)]
Disable LFUN_INDEX_TAG_ALL if there is noting to tag (#12812)

12 months agoProperly uncheck insert table toolbutton
Daniel Ramoeller [Sat, 10 Jun 2023 08:22:26 +0000 (10:22 +0200)]
Properly uncheck insert table toolbutton

Fix for bug #12801

12 months agode.po
Juergen Spitzmueller [Sun, 18 Jun 2023 09:57:51 +0000 (11:57 +0200)]
de.po

12 months agoUpdate sk.po
Kornel Benko [Sat, 17 Jun 2023 08:47:11 +0000 (10:47 +0200)]
Update sk.po

12 months agoFix lyx2lyx bug reported by Herbert Voss.
Richard Kimberly Heck [Fri, 16 Jun 2023 05:21:56 +0000 (01:21 -0400)]
Fix lyx2lyx bug reported by Herbert Voss.

For some reason, files converted from really old versions have fewer
lines in reference insets than in more recent versions.

12 months agoName menu item according to UI guidelines
Yuriy Skalko [Thu, 15 Jun 2023 22:34:05 +0000 (00:34 +0200)]
Name menu item according to UI guidelines

12 months agoRemove the mathed "BUGS" file (#3493)
Scott Kostyshak [Thu, 15 Jun 2023 09:11:32 +0000 (05:11 -0400)]
Remove the mathed "BUGS" file (#3493)

Jürgen cleaned up the previous contents of this "BUGS" file. What
was left (before the rm in this commit) had been written in 2001 at
2dd1a460, and it is not clear if it is still relevant.

12 months agoFix margins and spacing of InsetParamsUI
Daniel Ramoeller [Thu, 15 Jun 2023 05:18:31 +0000 (07:18 +0200)]
Fix margins and spacing of InsetParamsUI

Fix for bug #12244.

12 months agode/UserGuide: updates
Juergen Spitzmueller [Thu, 15 Jun 2023 08:06:25 +0000 (10:06 +0200)]
de/UserGuide: updates

12 months agoUserGuide: small amendments
Juergen Spitzmueller [Thu, 15 Jun 2023 08:06:09 +0000 (10:06 +0200)]
UserGuide: small amendments

12 months agode.po
Juergen Spitzmueller [Thu, 15 Jun 2023 07:06:39 +0000 (09:06 +0200)]
de.po

12 months agomacOS - Remove QtCore5Compat reference from list of frameworks to copy into app bundle
Stephan Witt [Wed, 14 Jun 2023 06:19:34 +0000 (08:19 +0200)]
macOS - Remove QtCore5Compat reference from list of frameworks to copy into app bundle

12 months agomacOS - Improved source validation on copying of Qt frameworks to app bundle.
Stephan Witt [Wed, 14 Jun 2023 06:17:10 +0000 (08:17 +0200)]
macOS - Improved source validation on copying of Qt frameworks to app bundle.

12 months agoRename No page break -> Prevent page break.
Pavel Sanda [Wed, 14 Jun 2023 00:12:44 +0000 (02:12 +0200)]
Rename No page break -> Prevent page break.

Fixes #12790, improved patch from Daniel Ramoeller.

12 months agoFix for HiDPI logo in About
Daniel Ramoeller [Sat, 11 Mar 2023 16:58:35 +0000 (17:58 +0100)]
Fix for HiDPI logo in About

Fix for #12322.

12 months agoWhitespace
Scott Kostyshak [Tue, 13 Jun 2023 08:32:34 +0000 (04:32 -0400)]
Whitespace

12 months agoActivate work area by tab click.
Pavel Sanda [Tue, 13 Jun 2023 10:11:11 +0000 (12:11 +0200)]
Activate work area by tab click.

Fix for #11835.
Patch by Daniel Ramoeller.

12 months ago* UG - move fullscreen section, see #12124.
Pavel Sanda [Tue, 13 Jun 2023 09:32:05 +0000 (11:32 +0200)]
* UG - move fullscreen section, see #12124.

12 months agoMove Fullscreen preferences from Editing>Control section into Look & Feel>User Interf...
Yuriy Skalko [Tue, 13 Jun 2023 09:28:31 +0000 (11:28 +0200)]
Move Fullscreen preferences from Editing>Control section into Look & Feel>User Interface section

12 months agoFix for #12681.
Pavel Sanda [Tue, 13 Jun 2023 08:07:56 +0000 (10:07 +0200)]
Fix for #12681.

Number Paste Recent menus entries as in toolbar.
Slightly improved patch from Daniel Ramoeller.

12 months ago* UG - document #12795
Pavel Sanda [Tue, 13 Jun 2023 05:06:11 +0000 (07:06 +0200)]
* UG - document #12795

12 months agoIn the hope that RC1 is next
Richard Kimberly Heck [Mon, 12 Jun 2023 23:40:55 +0000 (19:40 -0400)]
In the hope that RC1 is next

12 months agoFix bug #12796
Richard Kimberly Heck [Mon, 12 Jun 2023 23:38:40 +0000 (19:38 -0400)]
Fix bug #12796

12 months agoFix bug #12795
Daniel Ramoeller [Mon, 12 Jun 2023 23:33:25 +0000 (19:33 -0400)]
Fix bug #12795

12 months agoDocs for empty macros 2.4-beta3
Richard Kimberly Heck [Sun, 11 Jun 2023 17:16:45 +0000 (13:16 -0400)]
Docs for empty macros

12 months agoThe lyx2lyx for the previous commit.
Richard Kimberly Heck [Sun, 11 Jun 2023 16:51:29 +0000 (12:51 -0400)]
The lyx2lyx for the previous commit.

12 months agoDo not output LaTeX for a macro if the LaTeX part is empty.
Enrico Forestieri [Sun, 11 Jun 2023 16:45:48 +0000 (12:45 -0400)]
Do not output LaTeX for a macro if the LaTeX part is empty.

12 months agoAddress deprecation warning
Juergen Spitzmueller [Sun, 11 Jun 2023 11:15:55 +0000 (13:15 +0200)]
Address deprecation warning

QMutexRecursive has been introduced with Qt 5.14, the warning with
Qt 5.15.2

12 months agoLimit QEvent::ApplicationPaletteChange casing to Mac
Juergen Spitzmueller [Sun, 11 Jun 2023 10:43:30 +0000 (12:43 +0200)]
Limit QEvent::ApplicationPaletteChange casing to Mac

This is not needed on Linux and dramatically slows down runtime mode
change

12 months agoFix crash on OS-switch of dark/light mode (#12786)
Juergen Spitzmueller [Sat, 10 Jun 2023 06:30:31 +0000 (08:30 +0200)]
Fix crash on OS-switch of dark/light mode (#12786)

At least for Mac and Linux. Windows needs testing and possibly its
own fix.

12 months agoTypos in French translation
Jean-Marc Lasgouttes [Thu, 8 Jun 2023 15:54:44 +0000 (17:54 +0200)]
Typos in French translation

12 months agoinset-split should not be dispatched to inset at point
Jean-Marc Lasgouttes [Tue, 30 May 2023 22:45:04 +0000 (00:45 +0200)]
inset-split should not be dispatched to inset at point

This functon does not make sense for a full inset.

Fixes second part of bug #12747.

12 months agoAdd a note about Qt commandline params to man pages.
Pavel Sanda [Mon, 5 Jun 2023 20:57:35 +0000 (22:57 +0200)]
Add a note about Qt commandline params to man pages.

12 months agoUse ps2pdf -dALLOWPSTRANSPARENCY by default.
Pavel Sanda [Mon, 5 Jun 2023 20:45:14 +0000 (22:45 +0200)]
Use ps2pdf -dALLOWPSTRANSPARENCY by default.

Ghostscript 9.52 breaks transparency, for some time -dNOSAFER
workaround worked but since 9.53.3 -dALLOWPSTRANSPARENCY should
work. Tested on 9.53.3.

See also
https://www.lyx.org/trac/ticket/12303
https://www.mail-archive.com/lyx-users@lists.lyx.org/msg115086.html
https://tex.stackexchange.com/questions/597980/ghostscript-requires-dallowpstransparency-when-compiling-pstricks-figures
https://forums.fedoraforum.org/showthread.php?324453-Ghostscript-9-52-breaks-transparency-in-LaTeX-packages

12 months ago Update fr.po
jpc [Sat, 3 Jun 2023 15:09:26 +0000 (17:09 +0200)]
         Update fr.po

12 months ago* UserGuide.lyx - reflect reorganization of Output pane.
Pavel Sanda [Fri, 2 Jun 2023 18:32:06 +0000 (20:32 +0200)]
* UserGuide.lyx - reflect reorganization of Output pane.

12 months ago* Additional.lyx - clarify git VCS handling.
Pavel Sanda [Fri, 2 Jun 2023 18:30:24 +0000 (20:30 +0200)]
* Additional.lyx - clarify git VCS handling.

13 months agoReplace selection on insert LyX Document
Daniel Ramoeller [Tue, 16 May 2023 08:54:52 +0000 (10:54 +0200)]
Replace selection on insert LyX Document

Fix for bug #10390

13 months agoSplit-inset fix
Daniel Ramoeller [Mon, 17 Apr 2023 16:16:41 +0000 (18:16 +0200)]
Split-inset fix

- Remember whether something has to be pasted

Fix for bug #12747

13 months ago Update fr.po
jpc [Tue, 30 May 2023 15:33:13 +0000 (17:33 +0200)]
         Update fr.po

13 months agoCenter preview status message
Daniel Ramoeller [Mon, 3 Apr 2023 10:31:28 +0000 (12:31 +0200)]
Center preview status message

Fix for bug #12724

13 months agoFix indentation
Richard Kimberly Heck [Sat, 27 May 2023 15:38:19 +0000 (11:38 -0400)]
Fix indentation

13 months agoFix typo
Richard Kimberly Heck [Sat, 27 May 2023 15:37:00 +0000 (11:37 -0400)]
Fix typo

13 months agoFix bug #12772
Daniel Ramoeller [Sat, 27 May 2023 03:38:16 +0000 (23:38 -0400)]
Fix bug #12772

13 months agoFixup 1d637b8a: do not set extra spacing for typewriter
Jean-Marc Lasgouttes [Tue, 23 May 2023 07:20:52 +0000 (09:20 +0200)]
Fixup 1d637b8a: do not set extra spacing for typewriter

This messed up rows with both normal and typewriter fonts.

13 months agoFix indentation
Juergen Spitzmueller [Mon, 22 May 2023 14:32:49 +0000 (16:32 +0200)]
Fix indentation

13 months agoUse proper (inset) font for normalizing purposes
Juergen Spitzmueller [Fri, 19 May 2023 10:35:03 +0000 (12:35 +0200)]
Use proper (inset) font for normalizing purposes

Not all insets have a proper layout, but we have Inset::getFont()

Fixes #12729

13 months agode.po
Juergen Spitzmueller [Fri, 19 May 2023 10:32:20 +0000 (12:32 +0200)]
de.po

13 months agoAdvaced search: check for toString() before using it.
Kornel Benko [Thu, 18 May 2023 16:07:40 +0000 (18:07 +0200)]
Advaced search: check for toString() before using it.
(#12783)

13 months agoUpdate sk.po
Kornel Benko [Thu, 18 May 2023 09:59:16 +0000 (11:59 +0200)]
Update sk.po

13 months agoRemove ellipsis from "End Edit Externally..."
Daniel Ramoeller [Wed, 17 May 2023 18:26:32 +0000 (20:26 +0200)]
Remove ellipsis from "End Edit Externally..."

Fix for bug #12780

13 months agoReplace deprecated function
Juergen Spitzmueller [Wed, 17 May 2023 06:56:12 +0000 (08:56 +0200)]
Replace deprecated function

activateWindow() is available back to Qt4 (at least)

13 months agoRevert "Do not return copies of string members"
Jean-Marc Lasgouttes [Thu, 11 May 2023 13:27:02 +0000 (15:27 +0200)]
Revert "Do not return copies of string members"

This commit is very wrong when trivstrings are used (since what is
retirned is a temporary variable) and it turns out that cygwin
requires this for some reason.

This reverts commit 3ae5d6bdec1df23cc0d848b2d8bf6b0932eeee3b.

13 months ago#12769 correct line width based painting of wavy underline
Stephan Witt [Mon, 15 May 2023 05:06:44 +0000 (07:06 +0200)]
#12769 correct line width based painting of wavy underline

With very tiny fonts the line width is 0 and the loop to construct the wavy line never ends.

13 months agoMissing LF in sk.po
Kornel Benko [Sat, 13 May 2023 20:25:05 +0000 (22:25 +0200)]
Missing LF in sk.po

13 months agoUpdate sk.po
Kornel Benko [Sat, 13 May 2023 20:06:13 +0000 (22:06 +0200)]
Update sk.po

13 months agode.po
Juergen Spitzmueller [Sat, 13 May 2023 17:02:41 +0000 (19:02 +0200)]
de.po

13 months agoAdd labels to encoding variant combo
Juergen Spitzmueller [Sat, 13 May 2023 16:38:33 +0000 (18:38 +0200)]
Add labels to encoding variant combo