mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-20 07:16:22 +00:00
Merge branch 'master' into openpgp
This commit is contained in:
@@ -875,6 +875,15 @@ cons_wrap_setting(void)
|
||||
cons_show("Word wrap (/wrap) : OFF");
|
||||
}
|
||||
|
||||
void
|
||||
cons_winstidy_setting(void)
|
||||
{
|
||||
if (prefs_get_boolean(PREF_WINS_AUTO_TIDY))
|
||||
cons_show("Window Auto Tidy (/winstidy) : ON");
|
||||
else
|
||||
cons_show("Window Auto Tidy (/winstidy) : OFF");
|
||||
}
|
||||
|
||||
void
|
||||
cons_presence_setting(void)
|
||||
{
|
||||
@@ -1039,6 +1048,7 @@ cons_show_ui_prefs(void)
|
||||
cons_flash_setting();
|
||||
cons_splash_setting();
|
||||
cons_wrap_setting();
|
||||
cons_winstidy_setting();
|
||||
cons_time_setting();
|
||||
cons_resource_setting();
|
||||
cons_vercheck_setting();
|
||||
|
||||
@@ -1105,16 +1105,10 @@ ui_close_win(int index)
|
||||
status_bar_active(1);
|
||||
}
|
||||
|
||||
void
|
||||
gboolean
|
||||
ui_tidy_wins(void)
|
||||
{
|
||||
gboolean tidied = wins_tidy();
|
||||
|
||||
if (tidied) {
|
||||
cons_show("Windows tidied.");
|
||||
} else {
|
||||
cons_show("No tidy needed.");
|
||||
}
|
||||
return wins_tidy();
|
||||
}
|
||||
|
||||
void
|
||||
|
||||
@@ -216,7 +216,7 @@ void ui_show_all_room_rosters(void);
|
||||
void ui_hide_all_room_rosters(void);
|
||||
gboolean ui_chat_win_exists(const char * const barejid);
|
||||
|
||||
void ui_tidy_wins(void);
|
||||
gboolean ui_tidy_wins(void);
|
||||
void ui_prune_wins(void);
|
||||
gboolean ui_swap_wins(int source_win, int target_win);
|
||||
|
||||
@@ -305,6 +305,7 @@ void cons_occupants_setting(void);
|
||||
void cons_roster_setting(void);
|
||||
void cons_presence_setting(void);
|
||||
void cons_wrap_setting(void);
|
||||
void cons_winstidy_setting(void);
|
||||
void cons_time_setting(void);
|
||||
void cons_mouse_setting(void);
|
||||
void cons_statuses_setting(void);
|
||||
|
||||
Reference in New Issue
Block a user