Bug 70795 - Register display needs clean up
Summary: Register display needs clean up
Status: RESOLVED FIXED
Alias: None
Product: kdevelop
Classification: Applications
Component: CPP Debugger (show other bugs)
Version: git master
Platform: Compiled Sources Linux
: NOR normal
Target Milestone: ---
Assignee: KDevelop Developers
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-12-19 02:59 UTC by Jon Smirl
Modified: 2005-09-07 13:31 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Jon Smirl 2003-12-19 02:59:18 UTC
Version:           CVS (using KDE Devel)
Installed from:    Compiled sources

All of the windows in the debugger/viewer - like registers, memory, etc should be using the fixed font instead of proportional. I tried playing with all of the fonts settings but I couldn't figure out how to change it.

Also, the register/memory display should be using output formats with leading zeros and tabs so that things will line up. 

For example I see (in proportional fonts)
eax            0x1c3c 7228
ecx            0x0 0
edx            0x14 20
ebx            0x40397f18 1077509912

Instead of:
eax	0x00001c3c	7228
ecx	0x00000000	0
edx	0x00000014	20
ebx	0x40397f18	1077509912
Comment 1 Vladimir Prus 2005-05-20 09:59:10 UTC
In current SVN, the registers are showed OK. The memviewdlg.cpp has this:

    output_->setFont(KGlobalSettings::fixedFont());

so I believe this bug should be closed.
Comment 2 Vladimir Prus 2005-09-07 13:31:41 UTC
Closing this as fixes. Although eventually we'll rewrite the register view from ground up.