Index: sources/view/VAdjustmentResponseBase.cpp =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -r712f4c8a1b2382919300895b4422b831471044a3 --- sources/view/VAdjustmentResponseBase.cpp (.../VAdjustmentResponseBase.cpp) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/view/VAdjustmentResponseBase.cpp (.../VAdjustmentResponseBase.cpp) (revision 712f4c8a1b2382919300895b4422b831471044a3) @@ -40,8 +40,8 @@ QString View::VAdjustmentResponseBase::title () { if ( ! _adjustment_Reason ) return {}; - QString s = _rejects[_adjustment_Reason].title; - if ( ! s.isEmpty()) return s; + QString s = "[%1] " + _rejects[_adjustment_Reason].title; + if ( ! s.isEmpty()) return s .arg(_adjustment_Reason); else return tr("[%1] Unknown Error").arg(_adjustment_Reason); }