diff options
author | Dan Gudmundsson <[email protected]> | 2011-11-18 16:14:34 +0100 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2011-11-18 16:14:34 +0100 |
commit | 39730743916b300eb3e229c4e6e8a2987487d797 (patch) | |
tree | 33f2cd67d97ddc3d0fb56091d3e847491808f311 /lib/observer/src/observer_procinfo.erl | |
parent | 45fb452f5f067c5658a3dfe16495032728bf8a9d (diff) | |
download | otp-39730743916b300eb3e229c4e6e8a2987487d797.tar.gz otp-39730743916b300eb3e229c4e6e8a2987487d797.tar.bz2 otp-39730743916b300eb3e229c4e6e8a2987487d797.zip |
[observer] Implemented basic tracing functionality
Use ttb which does most of the work already.
Diffstat (limited to 'lib/observer/src/observer_procinfo.erl')
-rw-r--r-- | lib/observer/src/observer_procinfo.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/observer/src/observer_procinfo.erl b/lib/observer/src/observer_procinfo.erl index 2600109161..127599a39e 100644 --- a/lib/observer/src/observer_procinfo.erl +++ b/lib/observer/src/observer_procinfo.erl @@ -137,7 +137,7 @@ init_process_page(Panel, Pid) -> init_text_page(Parent) -> Style = ?wxTE_MULTILINE bor ?wxTE_RICH2 bor ?wxTE_READONLY, Text = wxTextCtrl:new(Parent, ?wxID_ANY, [{style, Style}]), - Font = observer_wx:get_attrib({font, modern}), + Font = observer_wx:get_attrib({font, fixed}), Attr = wxTextAttr:new(?wxBLACK, [{font, Font}]), true = wxTextCtrl:setDefaultStyle(Text, Attr), wxTextAttr:destroy(Attr), |