Bug 121184 - After switching between Business Fax and Personal Fax on Fax Wizard, footer option being passive
Summary: After switching between Business Fax and Personal Fax on Fax Wizard, footer o...
Status: NEW
Alias: None
Product: LibreOffice
Classification: Unclassified
Component: Writer (show other bugs)
Version:
(earliest affected)
4.4 all versions
Hardware: All All
: lowest minor
Assignee: Not Assigned
URL:
Whiteboard:
Keywords:
Depends on:
Blocks: Wizard
  Show dependency treegraph
 
Reported: 2018-11-06 00:33 UTC by Sabri Unal
Modified: 2025-09-18 23:19 UTC (History)
1 user (show)

See Also:
Crash report or crash signature:


Attachments
Screenshoot of the bug (36.18 KB, image/png)
2018-11-06 00:33 UTC, Sabri Unal
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Sabri Unal 2018-11-06 00:33:07 UTC
Created attachment 146330 [details]
Screenshoot of the bug

How to reproduce:

1) Choose "Menu - File - Wizards - Fax".

Business Fax option is checked default.

2) Switch to "Personal Fax" option.

Two option would be disabled: "Sender and recipient" + "Footer".

3) Switch back to "Business Fax" option.

Only "Sender and recipient" option would be activated back.

--------------------

I have tested the bug on two LibreOffice version on Windows

Version: 6.1.3.2 (x64)
Build ID: 86daf60bf00efa86ad547e59e09d6bb77c699acb
CPU threads: 4; OS: Windows 10.0; UI render: default; 
Locale: en-US (en_US); Calc: group threaded

Version: 6.2.0.0.alpha1 (x64)
Build ID: ff46ad24d1d3cbcea45895520483ed1fd4ff488b
CPU threads: 4; OS: Windows 10.0; UI render: default; VCL: win; 
Locale: en-US (en_US); Calc: threaded

And I have tested the bug on Linux too.

Version: 6.2.0.0.alpha1+
Build ID: 2cef68a605494bcef0388201b1058c95788c45a8
CPU threads: 8; OS: Linux 4.15; UI render: default; VCL: gtk3; 
TinderBox: Linux-rpm_deb-x86_64@86-TDF, Branch:master, Time: 2018-11-03_00:54:52
Comment 1 Xisco Faulí 2018-11-06 09:50:29 UTC
Thanks for reporting this issue.
Reproduced in

Version: 6.2.0.0.alpha1+
Build ID: b0da1ca2d7a426ff13f39b21362fbcd5c0580c24
CPU threads: 4; OS: Linux 4.15; UI render: default; VCL: gtk3; 
Locale: ca-ES (ca_ES.UTF-8); Calc: threaded

Version: 5.2.0.0.alpha0+
Build ID: 3ca42d8d51174010d5e8a32b96e9b4c0b3730a53
Threads 4; Ver: 4.10; Render: default; 

Version: 5.0.0.0.alpha1+
Build ID: 0db96caf0fcce09b87621c11b584a6d81cc7df86
Locale: ca-ES (ca_ES.UTF-8)

Version: 4.3.0.0.alpha1+
Build ID: c15927f20d4727c3b8de68497b6949e72f9e6e9e

Maybe I can take a look at it at some point in the near future...
Comment 2 QA Administrators 2021-01-17 04:12:03 UTC Comment hidden (obsolete)
Comment 3 Sasakis 2021-01-17 19:04:45 UTC Comment hidden (spam)
Comment 4 QA Administrators 2023-01-18 03:25:05 UTC Comment hidden (obsolete)
Comment 5 Rizwan Khan 2024-01-24 09:54:27 UTC Comment hidden (spam)
Comment 6 Justin L 2025-09-18 23:19:17 UTC
The wizard code is in wizards/com/sun/star/wizards/fax

It is not a very big deal for the 4th step (footer) to be disabled. It can be re-enabled at the 2nd step (Items to include).

Easily solved by:
        if not bState:
            self.chkUseFooter.State = 0
+       else:
+           self.chkUseFooter.State = 1

But since it isn't wrong or broken, I'll just document this and walk away.