diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-03-25 11:32:04 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-03-25 11:32:04 +0900 |
commit | b044269ff32df3a54664f65b61d3140a68a22a62 (patch) | |
tree | 0848e6e687e13eba289e10d125e9f912558fc248 | |
parent | 78d96bd2009b8741564df4778b63d3091610dbd7 (diff) | |
download | tdebase-b044269ff32df3a54664f65b61d3140a68a22a62.tar.gz tdebase-b044269ff32df3a54664f65b61d3140a68a22a62.zip |
Draw a border around the shutdown dialog. This makes the dialog more distinguishable over gray backgroundsfeat/shutdownd-dialog-border
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r-- | ksmserver/shutdowndlg.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ksmserver/shutdowndlg.cpp b/ksmserver/shutdowndlg.cpp index 64bf4a407..46826a64d 100644 --- a/ksmserver/shutdowndlg.cpp +++ b/ksmserver/shutdowndlg.cpp @@ -715,7 +715,7 @@ KSMShutdownDlg::KSMShutdownDlg( TQWidget* parent, } TQFrame* frame = new TQFrame( this ); - frame->setFrameStyle( TQFrame::StyledPanel | TQFrame::Raised ); + frame->setFrameStyle( TQFrame::StyledPanel | TQFrame::Plain); frame->setLineWidth( style().pixelMetric( TQStyle::PM_DefaultFrameWidth, frame ) ); // we need to set the minimum size for the logout box, since it // gets too small if there isn't all options available |