[Libreoffice-ux-advise] [Bug 106781] Addition of a style-focused formatting toolbar

2017-05-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106781

--- Comment #26 from Thomas Lendo  ---
I created bug 107851 because the other bug 106846 is for toolbars that are
created by the user and not toolbars delivered by LibO.

Jay:

The aligning, line spacing and paragraph spacing commands are nice. Idea to
enhance the style-focused behavior: These commands should change the
corresponding paragraph style's attributes of the selected paragraph, not the
selected paragraph in a direct-formatting way. How does that sound? Too
strange?

What I added to my company's style-focused formatting toolbar is the highlight
color button/widget. Because people like to (temporary) emphasize or mark some
text for collaborating people.

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


[Libreoffice-ux-advise] [Bug 106781] Addition of a style-focused formatting toolbar

2017-05-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106781

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||107851


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107851
[Bug 107851] Make style-focused formatting toolbar context-sensitive
-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-ux-advise] [Bug 101760] Picture/frame positioning: Rename "Follow text flow" as " Keep inside text area"

2017-05-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101760

Yousuf Philips (jay)  changed:

   What|Removed |Added

 CC||c...@nouenoff.nl,
   ||gautier.sop...@gmail.com,
   ||rb.hensc...@t-online.de,
   ||vstuart.fo...@utsa.edu
 Blocks||103270

--- Comment #2 from Yousuf Philips (jay)  ---
So the label is the same from the ODF spec, which mentions "The
style:flow-with-text attribute specifies the behavior of drawing shapes that
are positioned at a certain distance below an anchor and do not fit on the page
where the anchor is. If the value of the property is true, such drawing objects
follow the text flow, that is, they a displayed on the next page. If the
attribute value is false, such drawing objects are displayed outside the page's
text area."[1]

e.g. 

[1]
http://docs.oasis-open.org/office/v1.1/OS/OpenDocument-v1.1-html/OpenDocument-v1.1.html#15.27.27.Flow%20with%20Text|outline

So for me, MS's 'Move with text' is more understandable than 'Follow text
flow', though i would improving it further as 'Move with paragraph text' or
'Move with anchored paragraph text'. The suggested 'Keep inside text area'
wouldnt make sense to me if i saw it, as i could move an image outside of page
margins which is the text area.

@Cor, @Stuart, @Regina, @Sophie: What's your take?


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103270
[Bug 103270] [META] Image/Picture dialog bugs and enhancements
-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-ux-advise] [Bug 107788] list box ignores spaces

2017-05-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107788

--- Comment #9 from Howard Johnson  ---
(In reply to Alex Thurgood from comment #1)
> ... databases that
> accepted beginning spaces as valid data entry input even when part of a
> further string...

Thanks Alex, and this makes no sense, and is not the way databases like MySQL,
Posgres, Dbase, Access, etc., work.  So while there might be valid arguments
for rejecting my improvement suggestion, this can't be one of them.

-

A data cell as just that, data.  It's not text, but just more generally data,
to be used for whatever the database developer sees fit.  


Let me give you just one example:

Often I have a minor and major category.  For example, in a shopping list I
have items to get, and each item has an associated category.

But this category is composed of a major and minor category.  To make this easy
to type, I give my major categories a single letter, e.g. g = groceries, b =
building materials, ...  then for the category lookup I can have 

g apples (grocery)
b 2x4s (building materials)

So with only a three keystrokes I can select an item, and it makes sense.  And
I can also see what the g or b refer to, via the concatenated suffix in parens,
e.g. (grocery).

Now as for leading spaces, sometimes it also make sense to have that major
category missing but still selectable, like for miscellaneous items, for
example, 

" plants (for the garden)".

Again with just two keystrokes, " p" I can select this item.

So keeping the ability to use leading spaces, is very much a part of modern
databases.  If you want you can trim spaces when working with text, depending
on what you're doing.


Of course there are many other reasons to allow leading spaces in data, like
what if you suck in a whole bunch of text lines and then want to sort them to
find the ones with leading spaces, or a certain number of leading spaces.

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


[Libreoffice-ux-advise] [Bug 107788] list box ignores spaces

2017-05-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107788

--- Comment #8 from Howard Johnson  ---
(In reply to Lionel Elie Mamane from comment #4)

>..I'd rather use the backspace or delete key, ..

Good I think:

Because Del in nullable Text and Numeric fields already returns the field to
null, this is the same behavior as used elsewhere.  

I think Del key would be good in list-box to do this job!


...(Then perhaps later, the space method I presented above might make it even
better, as the space bar is easier to hit than the delete key, and every
keyboard has one ;-).  

Most of the time, data will not having a leading space, so you can quickly
remove an item with just a single space.  (BTW, I didn't think of this myself. 
Access does it this way too, and not to copy them, but just to try to speed
data entry as much as possible for users, especially for things that are done
all of the time with data entry.)



Not so good I think:

* Center key on keypad is probably out, as too many alternate keyboard issues
already exist worldwide, e,g. mac vs pc, german, vs english, no-keypad at
all...

* Backspace might work but if you've already typed some letters, then it needs
to serve a dual purpose, erasing those typed selectors, one by one, until you
back over the starting point, and then does this mean move field-left?  I think
backspace is too confusing.  (BUT..., I do think backspace needs to undo typed
selector key-strokes, e,g, if you type "del" then the current list
selector becomes just "de".)



Thanks guys.

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


[Libreoffice-ux-advise] [Bug 107788] list box ignores spaces

2017-05-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107788

Howard Johnson  changed:

   What|Removed |Added

 Attachment #133252|0   |1
is obsolete||

--- Comment #7 from Howard Johnson  ---
Created attachment 133314
  --> https://bugs.documentfoundation.org/attachment.cgi?id=133314&action=edit
Revised example file w/ missing form

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


[Libreoffice-ux-advise] [Bug 107788] list box ignores spaces

2017-05-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107788

--- Comment #6 from Howard Johnson  ---
(In reply to Alex Thurgood from comment #2)
> @Howard: there doesn't appear to be any form in the file you attached to
> this report, just two tables.

Thanks for letting me know Alex.

I'll re-upload ListBoxIgnoresSpaces.odb.  

LO must have crashed right before my upload and then reverted to prior save, ..
and the form got lost along the way.

:-(  Well, 'it happens.

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


[Libreoffice-ux-advise] [Bug 82873] Default behaviour of inserting an image in a list

2017-05-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=82873

Yousuf Philips (jay)  changed:

   What|Removed |Added

   See Also|https://bugs.freedesktop.or |
   |g/show_bug.cgi?id=87720 |

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


[Libreoffice-ux-advise] [Bug 87720] Default insert image anchor, wrapping, and spacing

2017-05-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87720

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||105302


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=105302
[Bug 105302] An image doesn't stay in a single table cell (and can't added to
it either)
-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-ux-advise] [Bug 82873] Default behaviour of inserting an image in a list

2017-05-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=82873

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||87720


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=87720
[Bug 87720] Default insert image anchor, wrapping, and spacing
-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-ux-advise] [Bug 87720] Default insert image anchor, wrapping, and spacing

2017-05-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87720

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||82873


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=82873
[Bug 82873] Default behaviour of inserting an image in a list
-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-ux-advise] [Bug 99746] [META] Improve PDF filter handling

2017-05-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99746

V Stuart Foote  changed:

   What|Removed |Added

 Depends on||107812


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107812
[Bug 107812] LibreOffice pdfimport and ipdf filter not picking up Italic or
Bold+Italic for Type1 PS fonts
-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-ux-advise] [Bug 67763] date & time controls: fractional seconds, timezone support, duration, interval

2017-05-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=67763

Fakabbir amin  changed:

   What|Removed |Added

   Assignee|fakab...@gmail.com  |libreoffice-b...@lists.free
   ||desktop.org

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


[Libreoffice-ux-advise] [Bug 58989] Transfer Localization info to EXTENSIONSWEBSITE

2017-05-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=58989

Fakabbir amin  changed:

   What|Removed |Added

   Assignee|fakab...@gmail.com  |libreoffice-b...@lists.free
   ||desktop.org

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


[Libreoffice-ux-advise] [Bug 107825] UX: Handling of empty textboxes

2017-05-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107825

Buovjaga  changed:

   What|Removed |Added

   Keywords||needsUXEval
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||todven...@suomi24.fi

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


[Libreoffice-ux-advise] [Bug 58989] Transfer Localization info to EXTENSIONSWEBSITE

2017-05-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=58989

Fakabbir amin  changed:

   What|Removed |Added

 Status|ASSIGNED|NEW

--- Comment #7 from Fakabbir amin  ---
(In reply to jani from comment #6)
> A polite ping, still working on this bug


Reverting status to NEW, due to other engagement.

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


[Libreoffice-ux-advise] [Bug 67763] date & time controls: fractional seconds, timezone support, duration, interval

2017-05-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=67763

Fakabbir amin  changed:

   What|Removed |Added

 Status|ASSIGNED|NEW

--- Comment #21 from Fakabbir amin  ---
(In reply to jani from comment #20)
> A polite ping, still working on this bug


Reverting status to NEW, due to other engagement.

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


[Libreoffice-ux-advise] [Bug 86085] TOOLBAR: 'Thousands Separator' button

2017-05-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=86085

--- Comment #9 from Fakabbir amin  ---
(In reply to jani from comment #8)
> A polite ping, still working on this bug

Was little busy, will submit a patch soon.

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


[Libreoffice-ux-advise] [Bug 105225] Color palette cannot be chosen in various places

2017-05-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105225

Telesto  changed:

   What|Removed |Added

 CC||tele...@surfxs.nl

--- Comment #18 from Telesto  ---
*** Bug 107842 has been marked as a duplicate of this bug. ***

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


[Libreoffice-ux-advise] [Bug 106781] Addition of a style-focused formatting toolbar

2017-05-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106781
Bug 106781 depends on bug 106999, which changed state.

Bug 106999 Summary: Add feedback behaviour to style applying UNO commands, so 
that style is marked in menu and toolbar, when in use in text with focus
https://bugs.documentfoundation.org/show_bug.cgi?id=106999

   What|Removed |Added

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

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


[Libreoffice-ux-advise] [Bug 105965] UI request to synchronize 'File > Print' and 'File > ' Export as PDF' default behavior

2017-05-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105965

--- Comment #9 from Cor Nouws  ---
still on my todo - no time to really look at commits these weeks..

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


[Libreoffice-ux-advise] [Bug 57799] Useful Error Message required if wrong password for ftp login has been used

2017-05-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=57799

Aleksas Pantechovskis  changed:

   What|Removed |Added

 Status|ASSIGNED|NEW

--- Comment #5 from Aleksas Pantechovskis  ---
(In reply to jani from comment #4)
> A polite ping, still working on this bug

No, as far as I can see I couldn't reproduce the issue.

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


[Libreoffice-ux-advise] [Bug 57799] Useful Error Message required if wrong password for ftp login has been used

2017-05-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=57799

Aleksas Pantechovskis  changed:

   What|Removed |Added

 Status|NEW |NEEDINFO

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


[Libreoffice-ux-advise] [Bug 57799] Useful Error Message required if wrong password for ftp login has been used

2017-05-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=57799

Aleksas Pantechovskis  changed:

   What|Removed |Added

   Assignee|alex.pan...@gmail.com   |libreoffice-b...@lists.free
   ||desktop.org

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


[Libreoffice-ux-advise] [Bug 105965] UI request to synchronize 'File > Print' and 'File > ' Export as PDF' default behavior

2017-05-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105965

--- Comment #8 from jani  ---
A polite ping, still working on this bug

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


[Libreoffice-ux-advise] [Bug 104154] Add list view to template manager

2017-05-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104154

--- Comment #8 from jani  ---
A polite ping, still working on this bug

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


[Libreoffice-ux-advise] [Bug 100370] Status bar functions - Selection Icon not working properly on left mouse click

2017-05-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100370

--- Comment #17 from jani  ---
A polite ping, still working on this bug

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


[Libreoffice-ux-advise] [Bug 67763] date & time controls: fractional seconds, timezone support, duration, interval

2017-05-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=67763

--- Comment #20 from jani  ---
A polite ping, still working on this bug

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


[Libreoffice-ux-advise] [Bug 58989] Transfer Localization info to EXTENSIONSWEBSITE

2017-05-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=58989

--- Comment #6 from jani  ---
A polite ping, still working on this bug

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


[Libreoffice-ux-advise] [Bug 86085] TOOLBAR: 'Thousands Separator' button

2017-05-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=86085

--- Comment #8 from jani  ---
A polite ping, still working on this bug

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


[Libreoffice-ux-advise] [Bug 54169] LibO doesn’t obey OS setting “only show the accelerator underline when the Alt key is being pressed”

2017-05-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=54169

--- Comment #40 from jani  ---
A polite ping, still working on this bug

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


[Libreoffice-ux-advise] [Bug 90794] Fix the Linux HiDPI start screen

2017-05-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90794

--- Comment #14 from jani  ---
A polite ping, still working on this bug

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


[Libreoffice-ux-advise] [Bug 57799] Useful Error Message required if wrong password for ftp login has been used

2017-05-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=57799

--- Comment #4 from jani  ---
A polite ping, still working on this bug

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