diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2019-11-29 22:49:04 +0100 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2019-11-29 22:49:04 +0100 |
commit | 9d09d6eddd838dc7720118a13772b980107c7399 (patch) | |
tree | fde30127cfd60657882f2cfbccc0aedf03028df2 /decoders/edid/pd.py | |
parent | 1865f48de72cebc0c8031bce8e5aaa2a3e1c5092 (diff) | |
download | libsigrokdecode-9d09d6eddd838dc7720118a13772b980107c7399.tar.gz libsigrokdecode-9d09d6eddd838dc7720118a13772b980107c7399.zip |
decoders: Use a slightly more consistent/logical annotation row setup.
Generally show "bits" and other smaller annotations in rows that come
before "larger" annotations (in later rows).
Diffstat (limited to 'decoders/edid/pd.py')
-rw-r--r-- | decoders/edid/pd.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/decoders/edid/pd.py b/decoders/edid/pd.py index 2d7460c..e2e7fee 100644 --- a/decoders/edid/pd.py +++ b/decoders/edid/pd.py @@ -87,8 +87,8 @@ class Decoder(srd.Decoder): ('sections', 'EDID structure sections'), ) annotation_rows = ( - ('sections', 'Sections', (1,)), ('fields', 'Fields', (0,)), + ('sections', 'Sections', (1,)), ) def __init__(self): |