diff options
author | Saturneric <[email protected]> | 2021-05-31 14:19:14 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-05-31 14:19:14 +0000 |
commit | dff37c4a6dadf81924d535939ce6ac288506654d (patch) | |
tree | a00af3d47ce2c9f9bea5dfe432102c2ebe1a9d19 /src/ui/keypair_details/KeyPairDetailTab.cpp | |
parent | Add a copyright statement to the header of some files. (diff) | |
download | GpgFrontend-dff37c4a6dadf81924d535939ce6ac288506654d.tar.gz GpgFrontend-dff37c4a6dadf81924d535939ce6ac288506654d.zip |
Write a text logo for never expiring.
Adjust the UI of the key details interface
Set the minimum length and width of the key details window.
Adjust the structure and layout of each tab page of key details.
Adjust part of the interface UI and text description.
Add revocation parentheses for signature deletion.
Signed-off-by: Saturneric <[email protected]>
Diffstat (limited to 'src/ui/keypair_details/KeyPairDetailTab.cpp')
-rw-r--r-- | src/ui/keypair_details/KeyPairDetailTab.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/keypair_details/KeyPairDetailTab.cpp b/src/ui/keypair_details/KeyPairDetailTab.cpp index 7ef267fa..66d01dfc 100644 --- a/src/ui/keypair_details/KeyPairDetailTab.cpp +++ b/src/ui/keypair_details/KeyPairDetailTab.cpp @@ -104,7 +104,6 @@ KeyPairDetailTab::KeyPairDetailTab(GpgME::GpgContext *ctx, const GpgKey &key, QW ownerBox->setLayout(vboxOD); mvbox->addWidget(ownerBox); - keyBox->setLayout(vboxKD); mvbox->addWidget(keyBox); @@ -124,9 +123,10 @@ KeyPairDetailTab::KeyPairDetailTab(GpgME::GpgContext *ctx, const GpgKey &key, QW fingerprintBox->setLayout(hboxFP); mvbox->addWidget(fingerprintBox); + mvbox->addStretch(); if (key.is_private_key) { - auto *privKeyBox = new QGroupBox(tr("Private Key")); + auto *privKeyBox = new QGroupBox(tr("Operations")); auto *vboxPK = new QVBoxLayout(); auto *exportButton = new QPushButton(tr("Export Private Key")); |