mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-12 17:27:52 -06:00
New keyboard shortcuts dialog -> Fixed items order and use wxNotebook on top
This commit is contained in:
parent
742c6b6746
commit
b5152e4126
2 changed files with 29 additions and 25 deletions
|
@ -14,12 +14,12 @@ namespace GUI {
|
|||
class KBShortcutsDialog : public DPIDialog
|
||||
{
|
||||
typedef std::pair<std::string, std::string> Shortcut;
|
||||
typedef std::vector< Shortcut > Shortcuts;
|
||||
typedef std::vector<std::pair<wxString, Shortcuts>> ShortcutsVec;
|
||||
typedef std::vector<Shortcut> Shortcuts;
|
||||
typedef std::vector<std::pair<wxString, Shortcuts>> ShortcutsVec;
|
||||
|
||||
ShortcutsVec m_full_shortcuts;
|
||||
ScalableBitmap m_logo_bmp;
|
||||
std::vector<wxStaticBitmap*> m_head_bitmaps;
|
||||
ShortcutsVec m_full_shortcuts;
|
||||
ScalableBitmap m_logo_bmp;
|
||||
wxStaticBitmap* m_header_bitmap;
|
||||
|
||||
public:
|
||||
KBShortcutsDialog();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue