File tree Expand file tree Collapse file tree
src/main/java/com/almostreliable/merequester/client/widgets Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ All notable changes to this project will be documented in this file.
77- added new status for missing CPU ([ #38 ] ( https://github.com/AlmostReliable/merequester/issues/38 ) )
88- added the energy capability to the wireless terminal to allow charging with other
99 mods ([ Kolja] ( https://github.com/ko-lja ) @[ #51 ] ( https://github.com/AlmostReliable/merequester/pull/51 ) )
10+ - added current status to non-expanded tooltip
1011- fixed scroll bar drag control using wrong texture ([ #49 ] ( https://github.com/AlmostReliable/merequester/issues/49 ) )
1112
1213### Known Bugs
Original file line number Diff line number Diff line change @@ -81,6 +81,8 @@ public List<Component> getTooltipMessage() {
8181 Utils .translate ("tooltip" , String .format ("%s_desc" , RequestStatus .EXPORT .toString ().toLowerCase ()))
8282 ));
8383 } else {
84+ tooltip .add (Utils .translate ("tooltip" , status .toString ().toLowerCase ()).withStyle (getStatusColor (status )));
85+ tooltip .add (Component .literal (" " ));
8486 Utils .addShiftInfoTooltip (tooltip );
8587 }
8688 return tooltip ;
You can’t perform that action at this time.
0 commit comments