diff --git a/include/TGUI/Widgets/ComboBox.hpp b/include/TGUI/Widgets/ComboBox.hpp index 13b6638e..10acc741 100644 --- a/include/TGUI/Widgets/ComboBox.hpp +++ b/include/TGUI/Widgets/ComboBox.hpp @@ -439,7 +439,7 @@ namespace tgui /// /// @param textSize The size size of the text /// - /// By default (or when passing 0 to this function) the text will be auto-sized to nicely fit inside the combo box. + /// When passing 0 to this function, the text will be auto-sized to nicely fit inside the combo box. /// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// void setTextSize(unsigned int textSize); diff --git a/include/TGUI/Widgets/EditBox.hpp b/include/TGUI/Widgets/EditBox.hpp index 1105e158..4347146c 100644 --- a/include/TGUI/Widgets/EditBox.hpp +++ b/include/TGUI/Widgets/EditBox.hpp @@ -219,7 +219,7 @@ namespace tgui /// @brief Changes the character size of the text /// /// @param textSize The new size of the text - /// If the size is 0 (default) then the text will be scaled to fit in the edit box. + /// If the size is 0 then the text will be scaled to fit in the edit box. /// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// void setTextSize(unsigned int textSize); diff --git a/include/TGUI/Widgets/ListBox.hpp b/include/TGUI/Widgets/ListBox.hpp index dbb2d003..4858f6ca 100644 --- a/include/TGUI/Widgets/ListBox.hpp +++ b/include/TGUI/Widgets/ListBox.hpp @@ -378,8 +378,8 @@ namespace tgui /// /// @param textSize The character size of the text /// - /// This will not change the height that each item has. By default (or when passing 0 to this function) the text will - /// be auto-sized to nicely fit inside this item height. + /// This will not change the height that each item has. + /// When passing 0 to this function, the text will be auto-sized to nicely fit inside this item height. /// /// @see setItemHeight /// diff --git a/include/TGUI/Widgets/Tabs.hpp b/include/TGUI/Widgets/Tabs.hpp index 6b2177b8..ba5a7c27 100644 --- a/include/TGUI/Widgets/Tabs.hpp +++ b/include/TGUI/Widgets/Tabs.hpp @@ -298,7 +298,7 @@ namespace tgui /// @brief Changes the character size of the text /// /// @param size The new size of the text - /// If the size is 0 (default) then the text will be scaled to fit in the tab. + /// If the size is 0 then the text will be scaled to fit in the tab. /// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// void setTextSize(unsigned int size); diff --git a/include/TGUI/Widgets/TreeView.hpp b/include/TGUI/Widgets/TreeView.hpp index 3e547541..b5cf3ab2 100644 --- a/include/TGUI/Widgets/TreeView.hpp +++ b/include/TGUI/Widgets/TreeView.hpp @@ -226,8 +226,8 @@ namespace tgui /// /// @param textSize The size size of the text /// - /// This will not change the height that each item has. By default (or when passing 0 to this function) the text will - /// be auto-sized to nicely fit inside this item height. + /// This will not change the height that each item has. + /// When passing 0 to this function, the text will be auto-sized to nicely fit inside this item height. /// /// @see setItemHeight /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////